aboutsummaryrefslogtreecommitdiff
path: root/examples/rp23/src/bin/uart_buffered_split.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-08-17 21:56:14 +0200
committerDario Nieuwenhuis <[email protected]>2024-08-17 22:12:39 +0200
commiteab3a57263d52eed517ee0fb9ccb307196664ee6 (patch)
treec0d9653f01d0f167d04a4e368023cb68665cbdb2 /examples/rp23/src/bin/uart_buffered_split.rs
parente30a888823ca96e4f9a2cbf82a0db6a5617228d6 (diff)
rp: use the rp-binary-info crate for binary info.
Diffstat (limited to 'examples/rp23/src/bin/uart_buffered_split.rs')
-rw-r--r--examples/rp23/src/bin/uart_buffered_split.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/rp23/src/bin/uart_buffered_split.rs b/examples/rp23/src/bin/uart_buffered_split.rs
index 2b14520d5..4e69a20c4 100644
--- a/examples/rp23/src/bin/uart_buffered_split.rs
+++ b/examples/rp23/src/bin/uart_buffered_split.rs
@@ -26,10 +26,10 @@ pub static IMAGE_DEF: ImageDef = ImageDef::secure_exe();
26#[link_section = ".bi_entries"] 26#[link_section = ".bi_entries"]
27#[used] 27#[used]
28pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [ 28pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [
29 embassy_rp::binary_info_rp_cargo_bin_name!(), 29 embassy_rp::binary_info::rp_program_name!(c"example"),
30 embassy_rp::binary_info_rp_cargo_version!(), 30 embassy_rp::binary_info::rp_cargo_version!(),
31 embassy_rp::binary_info_rp_program_description!(c"Blinky"), 31 embassy_rp::binary_info::rp_program_description!(c"Blinky"),
32 embassy_rp::binary_info_rp_program_build_attribute!(), 32 embassy_rp::binary_info::rp_program_build_attribute!(),
33]; 33];
34 34
35bind_interrupts!(struct Irqs { 35bind_interrupts!(struct Irqs {