embassy/examples/rp/src/bin/wifi_tcp_server.rs

150 lines
4.7 KiB
Rust
Raw Normal View History

//! This example uses the RP Pico W board Wifi chip (cyw43).
//! Connects to specified Wifi network and creates a TCP endpoint on port 1234.
#![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
use core::str::from_utf8;
2022-07-10 19:45:26 +02:00
2023-03-27 18:04:48 +02:00
use cyw43_pio::PioSpi;
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};
use embassy_rp::bind_interrupts;
use embassy_rp::gpio::{Level, Output};
2023-05-13 02:20:46 +02:00
use embassy_rp::peripherals::{DMA_CH0, PIN_23, PIN_25, PIO0};
use embassy_rp::pio::{InterruptHandler, Pio};
use embassy_time::Duration;
2022-11-07 22:51:58 +01:00
use embedded_io::asynch::Write;
2023-06-01 01:32:11 +02:00
use static_cell::make_static;
2022-07-10 19:45:26 +02:00
use {defmt_rtt as _, panic_probe as _};
bind_interrupts!(struct Irqs {
PIO0_IRQ_0 => InterruptHandler<PIO0>;
});
const WIFI_NETWORK: &str = "EmbassyTest";
const WIFI_PASSWORD: &str = "V8YxhKt5CdIAJFud";
2022-08-13 15:37:30 +02:00
#[embassy_executor::task]
async fn wifi_task(
runner: cyw43::Runner<'static, Output<'static, PIN_23>, PioSpi<'static, PIN_25, PIO0, 0, DMA_CH0>>,
) -> ! {
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());
2023-05-30 22:42:49 +02:00
let fw = include_bytes!("../../../../cyw43-firmware/43439A0.bin");
let clm = include_bytes!("../../../../cyw43-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!`:
2023-06-29 02:39:28 +02:00
// probe-rs download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000
// probe-rs download 43439A0_clm.bin --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);
let mut pio = Pio::new(p.PIO0, Irqs);
let spi = PioSpi::new(&mut pio.common, pio.sm0, pio.irq0, cs, p.PIN_24, p.PIN_29, p.DMA_CH0);
2022-07-10 19:45:26 +02:00
2023-06-01 01:32:11 +02:00
let state = make_static!(cyw43::State::new());
2022-12-27 01:19:26 +01:00
let (net_device, mut control, runner) = cyw43::new(state, pwr, spi, fw).await;
unwrap!(spawner.spawn(wifi_task(runner)));
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
2023-06-07 12:04:15 +02:00
let config = Config::dhcpv4(Default::default());
//let config = embassy_net::Config::ipv4_static(embassy_net::StaticConfigV4 {
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
2023-06-01 01:32:11 +02:00
let stack = &*make_static!(Stack::new(
2022-07-12 07:52:16 +02:00
net_device,
config,
2023-06-01 01:32:11 +02:00
make_static!(StackResources::<2>::new()),
2022-07-12 07:52:16 +02:00
seed
));
unwrap!(spawner.spawn(net_task(stack)));
loop {
//control.join_open(WIFI_NETWORK).await;
match control.join_wpa2(WIFI_NETWORK, WIFI_PASSWORD).await {
Ok(_) => break,
Err(err) => {
info!("join failed with status={}", err.status);
}
}
}
2023-03-01 19:03:46 +01:00
2022-07-12 07:52:16 +02:00
// 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(Duration::from_secs(10)));
2022-07-12 07:52:16 +02:00
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
}