embassy/examples/stm32f7/src/bin/eth.rs

120 lines
3.1 KiB
Rust
Raw Normal View History

#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use defmt::*;
use embassy_executor::Spawner;
2022-05-04 20:48:37 +02:00
use embassy_net::tcp::TcpSocket;
2022-05-23 03:50:43 +02:00
use embassy_net::{Ipv4Address, Stack, StackResources};
use embassy_stm32::eth::generic_smi::GenericSMI;
use embassy_stm32::eth::{Ethernet, State};
use embassy_stm32::peripherals::ETH;
use embassy_stm32::rng::Rng;
use embassy_stm32::time::mhz;
use embassy_stm32::{interrupt, Config};
use embassy_time::{Duration, Timer};
2022-05-04 20:48:37 +02:00
use embedded_io::asynch::Write;
2022-05-23 03:50:43 +02:00
use rand_core::RngCore;
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-05-23 03:50:43 +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();
STATIC_CELL.init_with(move || $val)
2022-05-23 03:50:43 +02:00
}};
}
2022-05-23 03:50:43 +02:00
type Device = Ethernet<'static, ETH, GenericSMI, 4, 4>;
#[embassy_executor::task]
2022-05-23 03:50:43 +02:00
async fn net_task(stack: &'static Stack<Device>) -> ! {
stack.run().await
}
#[embassy_executor::main]
async fn main(spawner: Spawner) -> ! {
let mut config = Config::default();
config.rcc.sys_ck = Some(mhz(200));
let p = embassy_stm32::init(config);
info!("Hello World!");
2022-05-23 03:50:43 +02:00
// Generate random seed.
let mut rng = Rng::new(p.RNG);
let mut seed = [0; 8];
rng.fill_bytes(&mut seed);
let seed = u64::from_le_bytes(seed);
2021-11-24 03:17:54 +01:00
let eth_int = interrupt::take!(ETH);
let mac_addr = [0x00, 0x00, 0xDE, 0xAD, 0xBE, 0xEF];
2022-05-23 03:50:43 +02:00
let device = unsafe {
Ethernet::new(
2022-08-22 15:51:44 +02:00
singleton!(State::new()),
2022-05-23 03:50:43 +02:00
p.ETH,
eth_int,
p.PA1,
p.PA2,
p.PC1,
p.PA7,
p.PC4,
p.PC5,
p.PG13,
p.PB13,
p.PG11,
GenericSMI,
mac_addr,
0,
)
};
2022-05-23 03:50:43 +02:00
let config = embassy_net::ConfigStrategy::Dhcp;
//let config = embassy_net::ConfigStrategy::Static(embassy_net::Config {
// address: Ipv4Cidr::new(Ipv4Address::new(10, 42, 0, 61), 24),
// dns_servers: Vec::new(),
// gateway: Some(Ipv4Address::new(10, 42, 0, 1)),
//});
2022-05-23 03:50:43 +02:00
// Init network stack
2022-08-22 15:51:44 +02:00
let stack = &*singleton!(Stack::new(
2022-05-23 03:50:43 +02:00
device,
config,
2022-08-22 15:51:44 +02:00
singleton!(StackResources::<1, 2, 8>::new()),
2022-05-23 03:50:43 +02:00
seed
));
2022-05-23 03:50:43 +02:00
// Launch network task
unwrap!(spawner.spawn(net_task(&stack)));
2022-05-23 03:50:43 +02:00
info!("Network task initialized");
// Then we can use it!
let mut rx_buffer = [0; 1024];
let mut tx_buffer = [0; 1024];
loop {
let mut socket = TcpSocket::new(&stack, &mut rx_buffer, &mut tx_buffer);
socket.set_timeout(Some(embassy_net::SmolDuration::from_secs(10)));
let remote_endpoint = (Ipv4Address::new(10, 42, 0, 1), 8000);
info!("connecting...");
let r = socket.connect(remote_endpoint).await;
if let Err(e) = r {
info!("connect error: {:?}", e);
continue;
}
info!("connected!");
loop {
let r = socket.write_all(b"Hello\n").await;
if let Err(e) = r {
info!("write error: {:?}", e);
return;
}
Timer::after(Duration::from_secs(1)).await;
}
}
}