aboutsummaryrefslogtreecommitdiff
path: root/examples/rp235x/src/bin
diff options
context:
space:
mode:
author1-rafael-1 <[email protected]>2025-04-13 22:23:07 +0200
committer1-rafael-1 <[email protected]>2025-04-13 22:23:07 +0200
commit6719e1305921c08fcfba7e8f48e315ef8b676c6e (patch)
tree3402ff42066c990a29787671f659c5b919f6e8ac /examples/rp235x/src/bin
parentdd3ae39d425ee529b2bb4dea0b8f68f42d8ee604 (diff)
update documentation and examples to mention RP235x
Diffstat (limited to 'examples/rp235x/src/bin')
-rw-r--r--examples/rp235x/src/bin/adc.rs4
-rw-r--r--examples/rp235x/src/bin/adc_dma.rs2
-rw-r--r--examples/rp235x/src/bin/blinky_wifi.rs4
-rw-r--r--examples/rp235x/src/bin/blinky_wifi_pico_plus_2.rs4
-rw-r--r--examples/rp235x/src/bin/gpio_async.rs2
-rw-r--r--examples/rp235x/src/bin/multicore.rs2
-rw-r--r--examples/rp235x/src/bin/pio_async.rs2
-rw-r--r--examples/rp235x/src/bin/pio_dma.rs2
-rw-r--r--examples/rp235x/src/bin/pio_hd44780.rs4
-rw-r--r--examples/rp235x/src/bin/pio_i2s.rs2
-rw-r--r--examples/rp235x/src/bin/pio_pwm.rs2
-rw-r--r--examples/rp235x/src/bin/pio_rotary_encoder.rs2
-rw-r--r--examples/rp235x/src/bin/pio_servo.rs2
-rw-r--r--examples/rp235x/src/bin/pio_stepper.rs2
-rw-r--r--examples/rp235x/src/bin/pio_uart.rs4
-rw-r--r--examples/rp235x/src/bin/pio_ws2812.rs2
-rw-r--r--examples/rp235x/src/bin/spi.rs2
-rw-r--r--examples/rp235x/src/bin/spi_async.rs2
-rw-r--r--examples/rp235x/src/bin/spi_display.rs2
-rw-r--r--examples/rp235x/src/bin/spi_sdmmc.rs2
-rw-r--r--examples/rp235x/src/bin/uart.rs2
-rw-r--r--examples/rp235x/src/bin/uart_buffered_split.rs2
-rw-r--r--examples/rp235x/src/bin/uart_unidir.rs2
-rw-r--r--examples/rp235x/src/bin/usb_webusb.rs2
-rw-r--r--examples/rp235x/src/bin/watchdog.rs2
-rw-r--r--examples/rp235x/src/bin/zerocopy.rs2
26 files changed, 31 insertions, 31 deletions
diff --git a/examples/rp235x/src/bin/adc.rs b/examples/rp235x/src/bin/adc.rs
index b7324f755..b2a83e376 100644
--- a/examples/rp235x/src/bin/adc.rs
+++ b/examples/rp235x/src/bin/adc.rs
@@ -40,8 +40,8 @@ async fn main(_spawner: Spawner) {
40} 40}
41 41
42fn convert_to_celsius(raw_temp: u16) -> f32 { 42fn convert_to_celsius(raw_temp: u16) -> f32 {
43 // According to chapter 4.9.5. Temperature Sensor in RP2040 datasheet 43 // According to chapter 12.4.6 Temperature Sensor in RP235x datasheet
44 let temp = 27.0 - (raw_temp as f32 * 3.3 / 4096.0 - 0.706) / 0.001721; 44 let temp = 27.0 - (raw_temp as f32 * 3.3 / 4096.0 - ..0.706) / 0.0..01721;
45 let sign = if temp < 0.0 { -1.0 } else { 1.0 }; 45 let sign = if temp < 0.0 { -1.0 } else { 1.0 };
46 let rounded_temp_x10: i16 = ((temp * 10.0) + 0.5 * sign) as i16; 46 let rounded_temp_x10: i16 = ((temp * 10.0) + 0.5 * sign) as i16;
47 (rounded_temp_x10 as f32) / 10.0 47 (rounded_temp_x10 as f32) / 10.0
diff --git a/examples/rp235x/src/bin/adc_dma.rs b/examples/rp235x/src/bin/adc_dma.rs
index b42c13fde..4003cc078 100644
--- a/examples/rp235x/src/bin/adc_dma.rs
+++ b/examples/rp235x/src/bin/adc_dma.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use the RP2040 ADC with DMA, both single- and multichannel reads. 1//! This example shows how to use the RP235x ADC with DMA, both single- and multichannel reads.
2//! For multichannel, the samples are interleaved in the buffer: 2//! For multichannel, the samples are interleaved in the buffer:
3//! `[ch1, ch2, ch3, ch4, ch1, ch2, ch3, ch4, ...]` 3//! `[ch1, ch2, ch3, ch4, ch1, ch2, ch3, ch4, ...]`
4#![no_std] 4#![no_std]
diff --git a/examples/rp235x/src/bin/blinky_wifi.rs b/examples/rp235x/src/bin/blinky_wifi.rs
index 7aeb38f1e..ef029867a 100644
--- a/examples/rp235x/src/bin/blinky_wifi.rs
+++ b/examples/rp235x/src/bin/blinky_wifi.rs
@@ -47,8 +47,8 @@ async fn main(spawner: Spawner) {
47 47
48 // To make flashing faster for development, you may want to flash the firmwares independently 48 // To make flashing faster for development, you may want to flash the firmwares independently
49 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: 49 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
50 // probe-rs download ../../cyw43-firmware/43439A0.bin --binary-format bin --chip RP2040 --base-address 0x10100000 50 // probe-rs download ../../cyw43-firmware/43439A0.bin --binary-format bin --chip RP235x --base-address 0x10100000
51 // probe-rs download ../../cyw43-firmware/43439A0_clm.bin --binary-format bin --chip RP2040 --base-address 0x10140000 51 // probe-rs download ../../cyw43-firmware/43439A0_clm.bin --binary-format bin --chip RP235x --base-address 0x10140000
52 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) }; 52 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) };
53 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; 53 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
54 54
diff --git a/examples/rp235x/src/bin/blinky_wifi_pico_plus_2.rs b/examples/rp235x/src/bin/blinky_wifi_pico_plus_2.rs
index d49d2e34f..2a919a1ea 100644
--- a/examples/rp235x/src/bin/blinky_wifi_pico_plus_2.rs
+++ b/examples/rp235x/src/bin/blinky_wifi_pico_plus_2.rs
@@ -46,8 +46,8 @@ async fn main(spawner: Spawner) {
46 46
47 // To make flashing faster for development, you may want to flash the firmwares independently 47 // To make flashing faster for development, you may want to flash the firmwares independently
48 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: 48 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
49 // probe-rs download ../../cyw43-firmware/43439A0.bin --binary-format bin --chip RP2040 --base-address 0x10100000 49 // probe-rs download ../../cyw43-firmware/43439A0.bin --binary-format bin --chip RP235x --base-address 0x10100000
50 // probe-rs download ../../cyw43-firmware/43439A0_clm.bin --binary-format bin --chip RP2040 --base-address 0x10140000 50 // probe-rs download ../../cyw43-firmware/43439A0_clm.bin --binary-format bin --chip RP235x --base-address 0x10140000
51 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) }; 51 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 230321) };
52 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; 52 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
53 53
diff --git a/examples/rp235x/src/bin/gpio_async.rs b/examples/rp235x/src/bin/gpio_async.rs
index b79fb2a15..3be8569bc 100644
--- a/examples/rp235x/src/bin/gpio_async.rs
+++ b/examples/rp235x/src/bin/gpio_async.rs
@@ -1,4 +1,4 @@
1//! This example shows how async gpio can be used with a RP2040. 1//! This example shows how async gpio can be used with a RP235x.
2//! 2//!
3//! The LED on the RP Pico W board is connected differently. See wifi_blinky.rs. 3//! The LED on the RP Pico W board is connected differently. See wifi_blinky.rs.
4 4
diff --git a/examples/rp235x/src/bin/multicore.rs b/examples/rp235x/src/bin/multicore.rs
index 7cb546c91..f02dc3876 100644
--- a/examples/rp235x/src/bin/multicore.rs
+++ b/examples/rp235x/src/bin/multicore.rs
@@ -1,4 +1,4 @@
1//! This example shows how to send messages between the two cores in the RP2040 chip. 1//! This example shows how to send messages between the two cores in the RP235x chip.
2//! 2//!
3//! The LED on the RP Pico W board is connected differently. See wifi_blinky.rs. 3//! The LED on the RP Pico W board is connected differently. See wifi_blinky.rs.
4 4
diff --git a/examples/rp235x/src/bin/pio_async.rs b/examples/rp235x/src/bin/pio_async.rs
index baf567b58..a519b8a50 100644
--- a/examples/rp235x/src/bin/pio_async.rs
+++ b/examples/rp235x/src/bin/pio_async.rs
@@ -1,4 +1,4 @@
1//! This example shows powerful PIO module in the RP2040 chip. 1//! This example shows powerful PIO module in the RP235x chip.
2 2
3#![no_std] 3#![no_std]
4#![no_main] 4#![no_main]
diff --git a/examples/rp235x/src/bin/pio_dma.rs b/examples/rp235x/src/bin/pio_dma.rs
index 64d603ba4..17332a238 100644
--- a/examples/rp235x/src/bin/pio_dma.rs
+++ b/examples/rp235x/src/bin/pio_dma.rs
@@ -1,4 +1,4 @@
1//! This example shows powerful PIO module in the RP2040 chip. 1//! This example shows powerful PIO module in the RP235x chip.
2 2
3#![no_std] 3#![no_std]
4#![no_main] 4#![no_main]
diff --git a/examples/rp235x/src/bin/pio_hd44780.rs b/examples/rp235x/src/bin/pio_hd44780.rs
index 164e6f8d3..06d989505 100644
--- a/examples/rp235x/src/bin/pio_hd44780.rs
+++ b/examples/rp235x/src/bin/pio_hd44780.rs
@@ -1,4 +1,4 @@
1//! This example shows powerful PIO module in the RP2040 chip to communicate with a HD44780 display. 1//! This example shows powerful PIO module in the RP235x chip to communicate with a HD44780 display.
2//! See (https://www.sparkfun.com/datasheets/LCD/HD44780.pdf) 2//! See (https://www.sparkfun.com/datasheets/LCD/HD44780.pdf)
3 3
4#![no_std] 4#![no_std]
@@ -30,7 +30,7 @@ async fn main(_spawner: Spawner) {
30 // db6 = PIN5 30 // db6 = PIN5
31 // db7 = PIN6 31 // db7 = PIN6
32 // additionally a pwm signal for a bias voltage charge pump is provided on pin 15, 32 // additionally a pwm signal for a bias voltage charge pump is provided on pin 15,
33 // allowing direct connection of the display to the RP2040 without level shifters. 33 // allowing direct connection of the display to the RP235x without level shifters.
34 let p = embassy_rp::init(Default::default()); 34 let p = embassy_rp::init(Default::default());
35 35
36 let _pwm = Pwm::new_output_b(p.PWM_SLICE7, p.PIN_15, { 36 let _pwm = Pwm::new_output_b(p.PWM_SLICE7, p.PIN_15, {
diff --git a/examples/rp235x/src/bin/pio_i2s.rs b/examples/rp235x/src/bin/pio_i2s.rs
index ae937a4ed..5a4bcfcac 100644
--- a/examples/rp235x/src/bin/pio_i2s.rs
+++ b/examples/rp235x/src/bin/pio_i2s.rs
@@ -1,5 +1,5 @@
1//! This example shows generating audio and sending it to a connected i2s DAC using the PIO 1//! This example shows generating audio and sending it to a connected i2s DAC using the PIO
2//! module of the RP2040. 2//! module of the RP235x.
3//! 3//!
4//! Connect the i2s DAC as follows: 4//! Connect the i2s DAC as follows:
5//! bclk : GPIO 18 5//! bclk : GPIO 18
diff --git a/examples/rp235x/src/bin/pio_pwm.rs b/examples/rp235x/src/bin/pio_pwm.rs
index 7eabb2289..5712b5b91 100644
--- a/examples/rp235x/src/bin/pio_pwm.rs
+++ b/examples/rp235x/src/bin/pio_pwm.rs
@@ -1,4 +1,4 @@
1//! This example shows how to create a pwm using the PIO module in the RP2040 chip. 1//! This example shows how to create a pwm using the PIO module in the RP235x chip.
2 2
3#![no_std] 3#![no_std]
4#![no_main] 4#![no_main]
diff --git a/examples/rp235x/src/bin/pio_rotary_encoder.rs b/examples/rp235x/src/bin/pio_rotary_encoder.rs
index 2750f61ae..e820d316d 100644
--- a/examples/rp235x/src/bin/pio_rotary_encoder.rs
+++ b/examples/rp235x/src/bin/pio_rotary_encoder.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use the PIO module in the RP2040 to read a quadrature rotary encoder. 1//! This example shows how to use the PIO module in the RP235x to read a quadrature rotary encoder.
2 2
3#![no_std] 3#![no_std]
4#![no_main] 4#![no_main]
diff --git a/examples/rp235x/src/bin/pio_servo.rs b/examples/rp235x/src/bin/pio_servo.rs
index c52ee7492..086b02f03 100644
--- a/examples/rp235x/src/bin/pio_servo.rs
+++ b/examples/rp235x/src/bin/pio_servo.rs
@@ -1,4 +1,4 @@
1//! This example shows how to create a pwm using the PIO module in the RP2040 chip. 1//! This example shows how to create a pwm using the PIO module in the RP235x chip.
2 2
3#![no_std] 3#![no_std]
4#![no_main] 4#![no_main]
diff --git a/examples/rp235x/src/bin/pio_stepper.rs b/examples/rp235x/src/bin/pio_stepper.rs
index 3862c248b..931adbeda 100644
--- a/examples/rp235x/src/bin/pio_stepper.rs
+++ b/examples/rp235x/src/bin/pio_stepper.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use the PIO module in the RP2040 to implement a stepper motor driver 1//! This example shows how to use the PIO module in the RP235x to implement a stepper motor driver
2//! for a 5-wire stepper such as the 28BYJ-48. You can halt an ongoing rotation by dropping the future. 2//! for a 5-wire stepper such as the 28BYJ-48. You can halt an ongoing rotation by dropping the future.
3 3
4#![no_std] 4#![no_std]
diff --git a/examples/rp235x/src/bin/pio_uart.rs b/examples/rp235x/src/bin/pio_uart.rs
index 9712984f9..d92e33feb 100644
--- a/examples/rp235x/src/bin/pio_uart.rs
+++ b/examples/rp235x/src/bin/pio_uart.rs
@@ -1,10 +1,10 @@
1//! This example shows how to use the PIO module in the RP2040 chip to implement a duplex UART. 1//! This example shows how to use the PIO module in the RP235x chip to implement a duplex UART.
2//! The PIO module is a very powerful peripheral that can be used to implement many different 2//! The PIO module is a very powerful peripheral that can be used to implement many different
3//! protocols. It is a very flexible state machine that can be programmed to do almost anything. 3//! protocols. It is a very flexible state machine that can be programmed to do almost anything.
4//! 4//!
5//! This example opens up a USB device that implements a CDC ACM serial port. It then uses the 5//! This example opens up a USB device that implements a CDC ACM serial port. It then uses the
6//! PIO module to implement a UART that is connected to the USB serial port. This allows you to 6//! PIO module to implement a UART that is connected to the USB serial port. This allows you to
7//! communicate with a device connected to the RP2040 over USB serial. 7//! communicate with a device connected to the RP235x over USB serial.
8 8
9#![no_std] 9#![no_std]
10#![no_main] 10#![no_main]
diff --git a/examples/rp235x/src/bin/pio_ws2812.rs b/examples/rp235x/src/bin/pio_ws2812.rs
index d1fcfc471..42694c527 100644
--- a/examples/rp235x/src/bin/pio_ws2812.rs
+++ b/examples/rp235x/src/bin/pio_ws2812.rs
@@ -1,4 +1,4 @@
1//! This example shows powerful PIO module in the RP2040 chip to communicate with WS2812 LED modules. 1//! This example shows powerful PIO module in the RP235x chip to communicate with WS2812 LED modules.
2//! See (https://www.sparkfun.com/categories/tags/ws2812) 2//! See (https://www.sparkfun.com/categories/tags/ws2812)
3 3
4#![no_std] 4#![no_std]
diff --git a/examples/rp235x/src/bin/spi.rs b/examples/rp235x/src/bin/spi.rs
index 4cc4f5210..308f05c01 100644
--- a/examples/rp235x/src/bin/spi.rs
+++ b/examples/rp235x/src/bin/spi.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use SPI (Serial Peripheral Interface) in the RP2040 chip. 1//! This example shows how to use SPI (Serial Peripheral Interface) in the RP235x chip.
2//! 2//!
3//! Example for resistive touch sensor in Waveshare Pico-ResTouch 3//! Example for resistive touch sensor in Waveshare Pico-ResTouch
4 4
diff --git a/examples/rp235x/src/bin/spi_async.rs b/examples/rp235x/src/bin/spi_async.rs
index 266584efc..62bedc68a 100644
--- a/examples/rp235x/src/bin/spi_async.rs
+++ b/examples/rp235x/src/bin/spi_async.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use SPI (Serial Peripheral Interface) in the RP2040 chip. 1//! This example shows how to use SPI (Serial Peripheral Interface) in the RP235x chip.
2//! No specific hardware is specified in this example. If you connect pin 11 and 12 you should get the same data back. 2//! No specific hardware is specified in this example. If you connect pin 11 and 12 you should get the same data back.
3 3
4#![no_std] 4#![no_std]
diff --git a/examples/rp235x/src/bin/spi_display.rs b/examples/rp235x/src/bin/spi_display.rs
index 9c524ab25..9967abefd 100644
--- a/examples/rp235x/src/bin/spi_display.rs
+++ b/examples/rp235x/src/bin/spi_display.rs
@@ -95,7 +95,7 @@ async fn main(_spawner: Spawner) {
95 95
96 let style = MonoTextStyle::new(&FONT_10X20, Rgb565::GREEN); 96 let style = MonoTextStyle::new(&FONT_10X20, Rgb565::GREEN);
97 Text::new( 97 Text::new(
98 "Hello embedded_graphics \n + embassy + RP2040!", 98 "Hello embedded_graphics \n + embassy + RP235x!",
99 Point::new(20, 200), 99 Point::new(20, 200),
100 style, 100 style,
101 ) 101 )
diff --git a/examples/rp235x/src/bin/spi_sdmmc.rs b/examples/rp235x/src/bin/spi_sdmmc.rs
index 9808b6a5d..e14a62c31 100644
--- a/examples/rp235x/src/bin/spi_sdmmc.rs
+++ b/examples/rp235x/src/bin/spi_sdmmc.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use `embedded-sdmmc` with the RP2040 chip, over SPI. 1//! This example shows how to use `embedded-sdmmc` with the RP235x chip, over SPI.
2//! 2//!
3//! The example will attempt to read a file `MY_FILE.TXT` from the root directory 3//! The example will attempt to read a file `MY_FILE.TXT` from the root directory
4//! of the SD card and print its contents. 4//! of the SD card and print its contents.
diff --git a/examples/rp235x/src/bin/uart.rs b/examples/rp235x/src/bin/uart.rs
index a59f537bf..ed912b959 100644
--- a/examples/rp235x/src/bin/uart.rs
+++ b/examples/rp235x/src/bin/uart.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use UART (Universal asynchronous receiver-transmitter) in the RP2040 chip. 1//! This example shows how to use UART (Universal asynchronous receiver-transmitter) in the RP235x chip.
2//! 2//!
3//! No specific hardware is specified in this example. Only output on pin 0 is tested. 3//! No specific hardware is specified in this example. Only output on pin 0 is tested.
4//! The Raspberry Pi Debug Probe (https://www.raspberrypi.com/products/debug-probe/) could be used 4//! The Raspberry Pi Debug Probe (https://www.raspberrypi.com/products/debug-probe/) could be used
diff --git a/examples/rp235x/src/bin/uart_buffered_split.rs b/examples/rp235x/src/bin/uart_buffered_split.rs
index da7e94139..f707c4b5e 100644
--- a/examples/rp235x/src/bin/uart_buffered_split.rs
+++ b/examples/rp235x/src/bin/uart_buffered_split.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use UART (Universal asynchronous receiver-transmitter) in the RP2040 chip. 1//! This example shows how to use UART (Universal asynchronous receiver-transmitter) in the RP235x chip.
2//! 2//!
3//! No specific hardware is specified in this example. If you connect pin 0 and 1 you should get the same data back. 3//! No specific hardware is specified in this example. If you connect pin 0 and 1 you should get the same data back.
4//! The Raspberry Pi Debug Probe (https://www.raspberrypi.com/products/debug-probe/) could be used 4//! The Raspberry Pi Debug Probe (https://www.raspberrypi.com/products/debug-probe/) could be used
diff --git a/examples/rp235x/src/bin/uart_unidir.rs b/examples/rp235x/src/bin/uart_unidir.rs
index a45f40756..4e98f9e1e 100644
--- a/examples/rp235x/src/bin/uart_unidir.rs
+++ b/examples/rp235x/src/bin/uart_unidir.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use UART (Universal asynchronous receiver-transmitter) in the RP2040 chip. 1//! This example shows how to use UART (Universal asynchronous receiver-transmitter) in the RP235x chip.
2//! 2//!
3//! Test TX-only and RX-only on two different UARTs. You need to connect GPIO0 to GPIO5 for 3//! Test TX-only and RX-only on two different UARTs. You need to connect GPIO0 to GPIO5 for
4//! this to work 4//! this to work
diff --git a/examples/rp235x/src/bin/usb_webusb.rs b/examples/rp235x/src/bin/usb_webusb.rs
index a5dc94d5b..75d28c853 100644
--- a/examples/rp235x/src/bin/usb_webusb.rs
+++ b/examples/rp235x/src/bin/usb_webusb.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use USB (Universal Serial Bus) in the RP2040 chip. 1//! This example shows how to use USB (Universal Serial Bus) in the RP235x chip.
2//! 2//!
3//! This creates a WebUSB capable device that echoes data back to the host. 3//! This creates a WebUSB capable device that echoes data back to the host.
4//! 4//!
diff --git a/examples/rp235x/src/bin/watchdog.rs b/examples/rp235x/src/bin/watchdog.rs
index b9d4ef22f..a54ec493a 100644
--- a/examples/rp235x/src/bin/watchdog.rs
+++ b/examples/rp235x/src/bin/watchdog.rs
@@ -1,4 +1,4 @@
1//! This example shows how to use Watchdog in the RP2040 chip. 1//! This example shows how to use Watchdog in the RP235x chip.
2//! 2//!
3//! It does not work with the RP Pico W board. See wifi_blinky.rs or connect external LED and resistor. 3//! It does not work with the RP Pico W board. See wifi_blinky.rs or connect external LED and resistor.
4 4
diff --git a/examples/rp235x/src/bin/zerocopy.rs b/examples/rp235x/src/bin/zerocopy.rs
index d1fb0eb00..086c86cac 100644
--- a/examples/rp235x/src/bin/zerocopy.rs
+++ b/examples/rp235x/src/bin/zerocopy.rs
@@ -1,6 +1,6 @@
1//! This example shows how to use `zerocopy_channel` from `embassy_sync` for 1//! This example shows how to use `zerocopy_channel` from `embassy_sync` for
2//! sending large values between two tasks without copying. 2//! sending large values between two tasks without copying.
3//! The example also shows how to use the RP2040 ADC with DMA. 3//! The example also shows how to use the RP235x ADC with DMA.
4#![no_std] 4#![no_std]
5#![no_main] 5#![no_main]
6 6