embassy/examples/rpi-pico-w/src/main.rs

244 lines
6.9 KiB
Rust
Raw Normal View History

2023-02-21 08:52:57 +01:00
#![no_std]
2022-07-10 19:45:26 +02:00
#![no_main]
2022-10-02 21:28:34 +02:00
#![feature(type_alias_impl_trait)]
2022-12-01 22:09:45 +01:00
#![feature(async_fn_in_trait)]
#![allow(incomplete_features)]
2022-07-10 19:45:26 +02:00
2023-02-19 16:31:35 +01:00
mod pio;
use core::convert::Infallible;
2023-02-19 16:31:35 +01:00
use core::str::from_utf8;
2022-07-10 19:45:26 +02:00
2022-08-13 15:37:30 +02:00
use defmt::*;
2022-08-22 17:24:43 +02:00
use embassy_executor::Spawner;
2022-07-12 07:52:16 +02:00
use embassy_net::tcp::TcpSocket;
2023-02-15 04:08:27 +01:00
use embassy_net::{Config, Stack, StackResources};
2022-08-13 15:37:30 +02:00
use embassy_rp::gpio::{Flex, Level, Output};
2023-02-19 16:31:35 +01:00
use embassy_rp::peripherals::{DMA_CH0, PIN_23, PIN_24, PIN_25, PIN_29};
use embassy_rp::pio::{Pio0, PioPeripherial, PioStateMachineInstance, Sm0};
use embedded_hal_1::spi::ErrorType;
use embedded_hal_async::spi::{ExclusiveDevice, SpiBusFlush, SpiBusRead, SpiBusWrite};
2022-11-07 22:51:58 +01:00
use embedded_io::asynch::Write;
2022-08-22 17:24:43 +02:00
use static_cell::StaticCell;
2022-07-10 19:45:26 +02:00
use {defmt_rtt as _, panic_probe as _};
2023-02-19 16:31:35 +01:00
use crate::pio::PioSpi;
2023-02-20 21:03:39 +01:00
2022-08-22 17:24:43 +02:00
macro_rules! singleton {
2022-07-10 19:45:26 +02:00
($val:expr) => {{
type T = impl Sized;
2022-08-22 17:24:43 +02:00
static STATIC_CELL: StaticCell<T> = StaticCell::new();
STATIC_CELL.init_with(move || $val)
2022-07-10 19:45:26 +02:00
}};
}
2022-08-13 15:37:30 +02:00
#[embassy_executor::task]
async fn wifi_task(
2023-02-19 16:31:35 +01:00
runner: cyw43::Runner<
'static,
Output<'static, PIN_23>,
ExclusiveDevice<PioSpi<PioStateMachineInstance<Pio0, Sm0>, DMA_CH0>, Output<'static, PIN_25>>,
>,
) -> ! {
2022-07-11 00:25:35 +02:00
runner.run().await
}
2022-08-13 15:37:30 +02:00
#[embassy_executor::task]
2022-12-27 01:19:26 +01:00
async fn net_task(stack: &'static Stack<cyw43::NetDriver<'static>>) -> ! {
2022-07-12 07:52:16 +02:00
stack.run().await
}
2022-08-13 15:37:30 +02:00
#[embassy_executor::main]
2022-08-22 17:24:43 +02:00
async fn main(spawner: Spawner) {
2022-07-10 19:45:26 +02:00
info!("Hello World!");
2022-08-22 17:24:43 +02:00
let p = embassy_rp::init(Default::default());
// Include the WiFi firmware and Country Locale Matrix (CLM) blobs.
let fw = include_bytes!("../../../firmware/43439A0.bin");
let clm = include_bytes!("../../../firmware/43439A0_clm.bin");
// To make flashing faster for development, you may want to flash the firmwares independently
// at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
// probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000
// probe-rs-cli download 43439A0.clm_blob --format bin --chip RP2040 --base-address 0x10140000
//let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) };
//let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
let pwr = Output::new(p.PIN_23, Level::Low);
let cs = Output::new(p.PIN_25, Level::High);
2023-02-19 16:31:35 +01:00
// let clk = Output::new(p.PIN_29, Level::Low);
// let mut dio = Flex::new(p.PIN_24);
// dio.set_low();
// dio.set_as_output();
// // let bus = MySpi { clk, dio };
let (_, sm, _, _, _) = p.PIO0.split();
let dma = p.DMA_CH0;
let bus = PioSpi::new(sm, p.PIN_24, p.PIN_29, dma);
let spi = ExclusiveDevice::new(bus, cs);
2022-07-10 19:45:26 +02:00
2022-08-22 17:24:43 +02:00
let state = singleton!(cyw43::State::new());
2022-12-27 01:19:26 +01:00
let (net_device, mut control, runner) = cyw43::new(state, pwr, spi, fw).await;
2022-07-10 19:45:26 +02:00
2022-07-11 00:25:35 +02:00
spawner.spawn(wifi_task(runner)).unwrap();
2022-07-10 19:45:26 +02:00
control.init(clm).await;
control
.set_power_management(cyw43::PowerManagementMode::PowerSave)
.await;
2022-07-12 07:52:16 +02:00
//control.join_open(env!("WIFI_NETWORK")).await;
control.join_wpa2(env!("WIFI_NETWORK"), env!("WIFI_PASSWORD")).await;
2022-07-12 07:52:16 +02:00
2023-02-15 04:08:27 +01:00
let config = Config::Dhcp(Default::default());
//let config = embassy_net::Config::Static(embassy_net::Config {
2022-07-12 07:52:16 +02:00
// address: Ipv4Cidr::new(Ipv4Address::new(192, 168, 69, 2), 24),
// dns_servers: Vec::new(),
// gateway: Some(Ipv4Address::new(192, 168, 69, 1)),
//});
// Generate random seed
let seed = 0x0123_4567_89ab_cdef; // chosen by fair dice roll. guarenteed to be random.
// Init network stack
2022-08-22 17:24:43 +02:00
let stack = &*singleton!(Stack::new(
2022-07-12 07:52:16 +02:00
net_device,
config,
2023-02-15 04:08:27 +01:00
singleton!(StackResources::<2>::new()),
2022-07-12 07:52:16 +02:00
seed
));
unwrap!(spawner.spawn(net_task(stack)));
// And now we can use it!
let mut rx_buffer = [0; 4096];
let mut tx_buffer = [0; 4096];
let mut buf = [0; 4096];
loop {
let mut socket = TcpSocket::new(stack, &mut rx_buffer, &mut tx_buffer);
socket.set_timeout(Some(embassy_net::SmolDuration::from_secs(10)));
2023-02-19 16:31:35 +01:00
control.gpio_set(0, false).await;
2022-07-12 07:52:16 +02:00
info!("Listening on TCP:1234...");
if let Err(e) = socket.accept(1234).await {
warn!("accept error: {:?}", e);
continue;
}
info!("Received connection from {:?}", socket.remote_endpoint());
2023-02-19 16:31:35 +01:00
control.gpio_set(0, true).await;
2022-07-12 07:52:16 +02:00
loop {
let n = match socket.read(&mut buf).await {
Ok(0) => {
warn!("read EOF");
break;
}
Ok(n) => n,
Err(e) => {
warn!("read error: {:?}", e);
break;
}
};
2023-02-21 08:52:57 +01:00
info!("rxd {}", from_utf8(&buf[..n]).unwrap());
2023-02-20 21:03:39 +01:00
2022-07-12 07:52:16 +02:00
match socket.write_all(&buf[..n]).await {
Ok(()) => {}
Err(e) => {
warn!("write error: {:?}", e);
break;
}
};
}
}
2022-07-10 19:45:26 +02:00
}
struct MySpi {
/// SPI clock
clk: Output<'static, PIN_29>,
/// 4 signals, all in one!!
/// - SPI MISO
/// - SPI MOSI
/// - IRQ
/// - strap to set to gSPI mode on boot.
dio: Flex<'static, PIN_24>,
}
impl ErrorType for MySpi {
type Error = Infallible;
}
2023-02-19 16:31:33 +01:00
impl cyw43::SpiBusCyw43<u32> for MySpi {
async fn cmd_write<'a>(&'a mut self, write: &'a [u32]) -> Result<(), Self::Error> {
self.write(write).await
}
async fn cmd_read<'a>(&'a mut self, write: &'a [u32], read: &'a mut [u32]) -> Result<(), Self::Error> {
self.write(write).await?;
self.read(read).await
}
}
impl SpiBusFlush for MySpi {
2022-12-01 22:09:45 +01:00
async fn flush(&mut self) -> Result<(), Self::Error> {
Ok(())
}
}
2022-07-16 18:06:57 +02:00
impl SpiBusRead<u32> for MySpi {
2022-12-01 22:09:45 +01:00
async fn read(&mut self, words: &mut [u32]) -> Result<(), Self::Error> {
self.dio.set_as_input();
for word in words {
let mut w = 0;
for _ in 0..32 {
w = w << 1;
// rising edge, sample data
if self.dio.is_high() {
w |= 0x01;
}
2022-12-01 22:09:45 +01:00
self.clk.set_high();
2022-12-01 22:09:45 +01:00
// falling edge
self.clk.set_low();
}
*word = w
}
2022-12-01 22:09:45 +01:00
Ok(())
}
}
2022-07-16 18:06:57 +02:00
impl SpiBusWrite<u32> for MySpi {
2022-12-01 22:09:45 +01:00
async fn write(&mut self, words: &[u32]) -> Result<(), Self::Error> {
self.dio.set_as_output();
for word in words {
let mut word = *word;
for _ in 0..32 {
// falling edge, setup data
self.clk.set_low();
if word & 0x8000_0000 == 0 {
self.dio.set_low();
} else {
self.dio.set_high();
}
2022-12-01 22:09:45 +01:00
// rising edge
self.clk.set_high();
word = word << 1;
}
}
2022-12-01 22:09:45 +01:00
self.clk.set_low();
self.dio.set_as_input();
Ok(())
}
}