aboutsummaryrefslogtreecommitdiff
path: root/examples/rp23/src/bin/uart_buffered_split.rs
diff options
context:
space:
mode:
authorCaleb Jamison <[email protected]>2024-10-01 10:51:18 -0400
committerGitHub <[email protected]>2024-10-01 16:51:18 +0200
commitbc0180800d751e651c0d15c807285c11cdb4f486 (patch)
treee5dfbef44d9173fe295ec9bce2639944e2630b9e /examples/rp23/src/bin/uart_buffered_split.rs
parente6ce81018bdd1a78d27a285260ac53b276690553 (diff)
Remove binary_info blocks from most examples. (#3385)
Diffstat (limited to 'examples/rp23/src/bin/uart_buffered_split.rs')
-rw-r--r--examples/rp23/src/bin/uart_buffered_split.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/rp23/src/bin/uart_buffered_split.rs b/examples/rp23/src/bin/uart_buffered_split.rs
index 4e69a20c4..9ed130727 100644
--- a/examples/rp23/src/bin/uart_buffered_split.rs
+++ b/examples/rp23/src/bin/uart_buffered_split.rs
@@ -22,16 +22,6 @@ use {defmt_rtt as _, panic_probe as _};
22#[used] 22#[used]
23pub static IMAGE_DEF: ImageDef = ImageDef::secure_exe(); 23pub static IMAGE_DEF: ImageDef = ImageDef::secure_exe();
24 24
25// Program metadata for `picotool info`
26#[link_section = ".bi_entries"]
27#[used]
28pub static PICOTOOL_ENTRIES: [embassy_rp::binary_info::EntryAddr; 4] = [
29 embassy_rp::binary_info::rp_program_name!(c"example"),
30 embassy_rp::binary_info::rp_cargo_version!(),
31 embassy_rp::binary_info::rp_program_description!(c"Blinky"),
32 embassy_rp::binary_info::rp_program_build_attribute!(),
33];
34
35bind_interrupts!(struct Irqs { 25bind_interrupts!(struct Irqs {
36 UART0_IRQ => BufferedInterruptHandler<UART0>; 26 UART0_IRQ => BufferedInterruptHandler<UART0>;
37}); 27});