2022-04-23 05:24:38 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use core::mem;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
2022-04-23 05:24:38 +02:00
|
|
|
use defmt::*;
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_executor::Spawner;
|
2022-05-04 20:48:37 +02:00
|
|
|
use embassy_net::tcp::TcpSocket;
|
2022-12-07 16:03:03 +01:00
|
|
|
use embassy_net::{Stack, StackResources};
|
2022-05-23 03:50:43 +02:00
|
|
|
use embassy_nrf::rng::Rng;
|
2022-07-09 08:40:10 +02:00
|
|
|
use embassy_nrf::usb::{Driver, PowerUsb};
|
2022-08-17 18:49:55 +02:00
|
|
|
use embassy_nrf::{interrupt, pac, peripherals};
|
2022-12-07 16:03:03 +01:00
|
|
|
use embassy_usb::class::cdc_ncm::embassy_net::{Device, Runner, State as NetState};
|
|
|
|
use embassy_usb::class::cdc_ncm::{CdcNcmClass, State};
|
2022-04-23 05:24:38 +02:00
|
|
|
use embassy_usb::{Builder, Config, UsbDevice};
|
2022-08-30 19:25:36 +02:00
|
|
|
use embedded_io::asynch::Write;
|
2022-08-22 15:51:44 +02:00
|
|
|
use static_cell::StaticCell;
|
2022-06-12 22:15:44 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2022-04-23 05:24:38 +02:00
|
|
|
|
2022-07-09 08:40:10 +02:00
|
|
|
type MyDriver = Driver<'static, peripherals::USBD, PowerUsb>;
|
2022-04-23 05:24:38 +02:00
|
|
|
|
2022-08-22 15:51:44 +02:00
|
|
|
macro_rules! singleton {
|
2022-05-23 03:50:43 +02:00
|
|
|
($val:expr) => {{
|
|
|
|
type T = impl Sized;
|
2022-08-22 15:51:44 +02:00
|
|
|
static STATIC_CELL: StaticCell<T> = StaticCell::new();
|
2022-12-07 16:03:03 +01:00
|
|
|
let (x,) = STATIC_CELL.init(($val,));
|
|
|
|
x
|
2022-05-23 03:50:43 +02:00
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
2022-12-07 16:03:03 +01:00
|
|
|
const MTU: usize = 1514;
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::task]
|
2022-04-23 05:24:38 +02:00
|
|
|
async fn usb_task(mut device: UsbDevice<'static, MyDriver>) -> ! {
|
|
|
|
device.run().await
|
|
|
|
}
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::task]
|
2022-12-07 16:03:03 +01:00
|
|
|
async fn usb_ncm_task(class: Runner<'static, MyDriver, MTU>) -> ! {
|
|
|
|
class.run().await
|
2022-04-23 05:24:38 +02:00
|
|
|
}
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::task]
|
2022-12-07 16:03:03 +01:00
|
|
|
async fn net_task(stack: &'static Stack<Device<'static, MTU>>) -> ! {
|
2022-05-23 03:50:43 +02:00
|
|
|
stack.run().await
|
2022-04-23 05:24:38 +02:00
|
|
|
}
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::main]
|
2022-08-17 18:49:55 +02:00
|
|
|
async fn main(spawner: Spawner) {
|
|
|
|
let p = embassy_nrf::init(Default::default());
|
2022-04-23 05:24:38 +02:00
|
|
|
let clock: pac::CLOCK = unsafe { mem::transmute(()) };
|
|
|
|
|
|
|
|
info!("Enabling ext hfosc...");
|
|
|
|
clock.tasks_hfclkstart.write(|w| unsafe { w.bits(1) });
|
|
|
|
while clock.events_hfclkstarted.read().bits() != 1 {}
|
|
|
|
|
|
|
|
// Create the driver, from the HAL.
|
|
|
|
let irq = interrupt::take!(USBD);
|
2022-07-09 08:40:10 +02:00
|
|
|
let power_irq = interrupt::take!(POWER_CLOCK);
|
|
|
|
let driver = Driver::new(p.USBD, irq, PowerUsb::new(power_irq));
|
2022-04-23 05:24:38 +02:00
|
|
|
|
|
|
|
// Create embassy-usb Config
|
|
|
|
let mut config = Config::new(0xc0de, 0xcafe);
|
|
|
|
config.manufacturer = Some("Embassy");
|
|
|
|
config.product = Some("USB-Ethernet example");
|
|
|
|
config.serial_number = Some("12345678");
|
|
|
|
config.max_power = 100;
|
|
|
|
config.max_packet_size_0 = 64;
|
|
|
|
|
|
|
|
// Required for Windows support.
|
|
|
|
config.composite_with_iads = true;
|
|
|
|
config.device_class = 0xEF;
|
|
|
|
config.device_sub_class = 0x02;
|
|
|
|
config.device_protocol = 0x01;
|
|
|
|
|
|
|
|
// Create embassy-usb DeviceBuilder using the driver and config.
|
|
|
|
let mut builder = Builder::new(
|
|
|
|
driver,
|
|
|
|
config,
|
2022-12-07 16:03:03 +01:00
|
|
|
&mut singleton!([0; 256])[..],
|
|
|
|
&mut singleton!([0; 256])[..],
|
|
|
|
&mut singleton!([0; 256])[..],
|
|
|
|
&mut singleton!([0; 128])[..],
|
2022-04-23 05:24:38 +02:00
|
|
|
None,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Our MAC addr.
|
|
|
|
let our_mac_addr = [0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC];
|
|
|
|
// Host's MAC addr. This is the MAC the host "thinks" its USB-to-ethernet adapter has.
|
|
|
|
let host_mac_addr = [0x88, 0x88, 0x88, 0x88, 0x88, 0x88];
|
|
|
|
|
|
|
|
// Create classes on the builder.
|
2022-12-07 16:03:03 +01:00
|
|
|
let class = CdcNcmClass::new(&mut builder, singleton!(State::new()), host_mac_addr, 64);
|
2022-04-23 05:24:38 +02:00
|
|
|
|
|
|
|
// Build the builder.
|
|
|
|
let usb = builder.build();
|
|
|
|
|
|
|
|
unwrap!(spawner.spawn(usb_task(usb)));
|
|
|
|
|
2022-12-07 16:03:03 +01:00
|
|
|
let (runner, device) = class.into_embassy_net_device::<MTU, 4, 4>(singleton!(NetState::new()), our_mac_addr);
|
|
|
|
unwrap!(spawner.spawn(usb_ncm_task(runner)));
|
2022-04-23 05:24:38 +02:00
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
let config = embassy_net::Config::Dhcp(Default::default());
|
|
|
|
//let config = embassy_net::Config::Static(embassy_net::StaticConfig {
|
2022-05-23 03:50:43 +02:00
|
|
|
// 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, interrupt::take!(RNG));
|
|
|
|
let mut seed = [0; 8];
|
|
|
|
rng.blocking_fill_bytes(&mut seed);
|
|
|
|
let seed = u64::from_le_bytes(seed);
|
|
|
|
|
|
|
|
// Init network stack
|
2023-01-19 14:40:58 +01:00
|
|
|
let stack = &*singleton!(Stack::new(device, config, singleton!(StackResources::<2>::new()), seed));
|
2022-05-23 03:50:43 +02:00
|
|
|
|
|
|
|
unwrap!(spawner.spawn(net_task(stack)));
|
2022-04-23 05:24:38 +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 {
|
2022-05-23 03:50:43 +02:00
|
|
|
let mut socket = TcpSocket::new(stack, &mut rx_buffer, &mut tx_buffer);
|
2022-04-23 05:24:38 +02:00
|
|
|
socket.set_timeout(Some(embassy_net::SmolDuration::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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|