aboutsummaryrefslogtreecommitdiff
path: root/examples/rp23/src/bin/button.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/button.rs
parente30a888823ca96e4f9a2cbf82a0db6a5617228d6 (diff)
rp: use the rp-binary-info crate for binary info.
Diffstat (limited to 'examples/rp23/src/bin/button.rs')
-rw-r--r--examples/rp23/src/bin/button.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/rp23/src/bin/button.rs b/examples/rp23/src/bin/button.rs
index 0a0559397..fb067a370 100644
--- a/examples/rp23/src/bin/button.rs
+++ b/examples/rp23/src/bin/button.rs
@@ -18,10 +18,10 @@ pub static IMAGE_DEF: ImageDef = ImageDef::secure_exe();
18#[link_section = ".bi_entries"] 18#[link_section = ".bi_entries"]
19#[used] 19#[used]
20pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [ 20pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [
21 embassy_rp::binary_info_rp_cargo_bin_name!(), 21 embassy_rp::binary_info::rp_program_name!(c"example"),
22 embassy_rp::binary_info_rp_cargo_version!(), 22 embassy_rp::binary_info::rp_cargo_version!(),
23 embassy_rp::binary_info_rp_program_description!(c"Blinky"), 23 embassy_rp::binary_info::rp_program_description!(c"Blinky"),
24 embassy_rp::binary_info_rp_program_build_attribute!(), 24 embassy_rp::binary_info::rp_program_build_attribute!(),
25]; 25];
26 26
27#[embassy_executor::main] 27#[embassy_executor::main]