aboutsummaryrefslogtreecommitdiff
path: root/examples/rp23/src/bin/uart_buffered_split.rs
diff options
context:
space:
mode:
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});