140 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
#![no_std]
 | 
						|
#![no_main]
 | 
						|
 | 
						|
use defmt::{info, unwrap, warn};
 | 
						|
use embassy_executor::Spawner;
 | 
						|
use embassy_net::tcp::TcpSocket;
 | 
						|
use embassy_net::StackResources;
 | 
						|
use embassy_nrf::gpio::{Input, Level, Output, OutputDrive, Pull};
 | 
						|
use embassy_nrf::rng::Rng;
 | 
						|
use embassy_nrf::spim::{self, Spim};
 | 
						|
use embassy_nrf::{bind_interrupts, peripherals};
 | 
						|
use embassy_time::Delay;
 | 
						|
use embedded_hal_bus::spi::ExclusiveDevice;
 | 
						|
use embedded_io_async::Write;
 | 
						|
use static_cell::StaticCell;
 | 
						|
use {defmt_rtt as _, embassy_net_esp_hosted as hosted, panic_probe as _};
 | 
						|
 | 
						|
const WIFI_NETWORK: &str = "EmbassyTest";
 | 
						|
const WIFI_PASSWORD: &str = "V8YxhKt5CdIAJFud";
 | 
						|
 | 
						|
bind_interrupts!(struct Irqs {
 | 
						|
    SPIM3 => spim::InterruptHandler<peripherals::SPI3>;
 | 
						|
    RNG => embassy_nrf::rng::InterruptHandler<peripherals::RNG>;
 | 
						|
});
 | 
						|
 | 
						|
#[embassy_executor::task]
 | 
						|
async fn wifi_task(
 | 
						|
    runner: hosted::Runner<
 | 
						|
        'static,
 | 
						|
        ExclusiveDevice<Spim<'static, peripherals::SPI3>, Output<'static>, Delay>,
 | 
						|
        Input<'static>,
 | 
						|
        Output<'static>,
 | 
						|
    >,
 | 
						|
) -> ! {
 | 
						|
    runner.run().await
 | 
						|
}
 | 
						|
 | 
						|
#[embassy_executor::task]
 | 
						|
async fn net_task(mut runner: embassy_net::Runner<'static, hosted::NetDriver<'static>>) -> ! {
 | 
						|
    runner.run().await
 | 
						|
}
 | 
						|
 | 
						|
#[embassy_executor::main]
 | 
						|
async fn main(spawner: Spawner) {
 | 
						|
    info!("Hello World!");
 | 
						|
 | 
						|
    let p = embassy_nrf::init(Default::default());
 | 
						|
 | 
						|
    let miso = p.P0_28;
 | 
						|
    let sck = p.P0_29;
 | 
						|
    let mosi = p.P0_30;
 | 
						|
    let cs = Output::new(p.P0_31, Level::High, OutputDrive::HighDrive);
 | 
						|
    let handshake = Input::new(p.P1_01, Pull::Up);
 | 
						|
    let ready = Input::new(p.P1_04, Pull::None);
 | 
						|
    let reset = Output::new(p.P1_05, Level::Low, OutputDrive::Standard);
 | 
						|
 | 
						|
    let mut config = spim::Config::default();
 | 
						|
    config.frequency = spim::Frequency::M32;
 | 
						|
    config.mode = spim::MODE_2; // !!!
 | 
						|
    let spi = spim::Spim::new(p.SPI3, Irqs, sck, miso, mosi, config);
 | 
						|
    let spi = ExclusiveDevice::new(spi, cs, Delay);
 | 
						|
 | 
						|
    static ESP_STATE: StaticCell<embassy_net_esp_hosted::State> = StaticCell::new();
 | 
						|
    let (device, mut control, runner) = embassy_net_esp_hosted::new(
 | 
						|
        ESP_STATE.init(embassy_net_esp_hosted::State::new()),
 | 
						|
        spi,
 | 
						|
        handshake,
 | 
						|
        ready,
 | 
						|
        reset,
 | 
						|
    )
 | 
						|
    .await;
 | 
						|
 | 
						|
    unwrap!(spawner.spawn(wifi_task(runner)));
 | 
						|
 | 
						|
    unwrap!(control.init().await);
 | 
						|
    unwrap!(control.connect(WIFI_NETWORK, WIFI_PASSWORD).await);
 | 
						|
 | 
						|
    let config = embassy_net::Config::dhcpv4(Default::default());
 | 
						|
    // let config = embassy_net::Config::ipv4_static(embassy_net::StaticConfigV4 {
 | 
						|
    //    address: Ipv4Cidr::new(Ipv4Address::new(10, 42, 0, 61), 24),
 | 
						|
    //    dns_servers: Vec::new(),
 | 
						|
    //    gateway: Some(Ipv4Address::new(10, 42, 0, 1)),
 | 
						|
    // });
 | 
						|
 | 
						|
    // Generate random seed
 | 
						|
    let mut rng = Rng::new(p.RNG, Irqs);
 | 
						|
    let mut seed = [0; 8];
 | 
						|
    rng.blocking_fill_bytes(&mut seed);
 | 
						|
    let seed = u64::from_le_bytes(seed);
 | 
						|
 | 
						|
    // Init network stack
 | 
						|
    static RESOURCES: StaticCell<StackResources<3>> = StaticCell::new();
 | 
						|
    let (stack, runner) = embassy_net::new(device, config, RESOURCES.init(StackResources::new()), seed);
 | 
						|
 | 
						|
    unwrap!(spawner.spawn(net_task(runner)));
 | 
						|
 | 
						|
    // 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_time::Duration::from_secs(10)));
 | 
						|
 | 
						|
        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());
 | 
						|
 | 
						|
        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;
 | 
						|
                }
 | 
						|
            };
 | 
						|
 | 
						|
            info!("rxd {:02x}", &buf[..n]);
 | 
						|
 | 
						|
            match socket.write_all(&buf[..n]).await {
 | 
						|
                Ok(()) => {}
 | 
						|
                Err(e) => {
 | 
						|
                    warn!("write error: {:?}", e);
 | 
						|
                    break;
 | 
						|
                }
 | 
						|
            };
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |