diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-08-17 21:56:14 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2024-08-17 22:12:39 +0200 |
| commit | eab3a57263d52eed517ee0fb9ccb307196664ee6 (patch) | |
| tree | c0d9653f01d0f167d04a4e368023cb68665cbdb2 /examples/rp23/src/bin/uart.rs | |
| parent | e30a888823ca96e4f9a2cbf82a0db6a5617228d6 (diff) | |
rp: use the rp-binary-info crate for binary info.
Diffstat (limited to 'examples/rp23/src/bin/uart.rs')
| -rw-r--r-- | examples/rp23/src/bin/uart.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/rp23/src/bin/uart.rs b/examples/rp23/src/bin/uart.rs index ae00f36dc..0ffe0b293 100644 --- a/examples/rp23/src/bin/uart.rs +++ b/examples/rp23/src/bin/uart.rs | |||
| @@ -20,10 +20,10 @@ pub static IMAGE_DEF: ImageDef = ImageDef::secure_exe(); | |||
| 20 | #[link_section = ".bi_entries"] | 20 | #[link_section = ".bi_entries"] |
| 21 | #[used] | 21 | #[used] |
| 22 | pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [ | 22 | pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [ |
| 23 | embassy_rp::binary_info_rp_cargo_bin_name!(), | 23 | embassy_rp::binary_info::rp_program_name!(c"example"), |
| 24 | embassy_rp::binary_info_rp_cargo_version!(), | 24 | embassy_rp::binary_info::rp_cargo_version!(), |
| 25 | embassy_rp::binary_info_rp_program_description!(c"Blinky"), | 25 | embassy_rp::binary_info::rp_program_description!(c"Blinky"), |
| 26 | embassy_rp::binary_info_rp_program_build_attribute!(), | 26 | embassy_rp::binary_info::rp_program_build_attribute!(), |
| 27 | ]; | 27 | ]; |
| 28 | 28 | ||
| 29 | #[embassy_executor::main] | 29 | #[embassy_executor::main] |
