2022-08-09 14:44:18 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
use defmt::*;
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_executor::Spawner;
|
2022-08-09 14:44:18 +02:00
|
|
|
use embassy_net::tcp::client::{TcpClient, TcpClientState};
|
|
|
|
use embassy_net::{Stack, StackResources};
|
|
|
|
use embassy_stm32::eth::generic_smi::GenericSMI;
|
2022-12-12 02:04:33 +01:00
|
|
|
use embassy_stm32::eth::{Ethernet, PacketQueue};
|
2022-08-09 14:44:18 +02:00
|
|
|
use embassy_stm32::peripherals::ETH;
|
|
|
|
use embassy_stm32::rng::Rng;
|
|
|
|
use embassy_stm32::time::mhz;
|
2023-05-25 00:29:56 +02:00
|
|
|
use embassy_stm32::{bind_interrupts, eth, Config};
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_time::{Duration, Timer};
|
2022-08-09 14:44:18 +02:00
|
|
|
use embedded_io::asynch::Write;
|
|
|
|
use embedded_nal_async::{Ipv4Addr, SocketAddr, SocketAddrV4, TcpConnect};
|
|
|
|
use rand_core::RngCore;
|
2023-06-01 01:32:11 +02:00
|
|
|
use static_cell::make_static;
|
2022-08-09 14:44:18 +02:00
|
|
|
use {defmt_rtt as _, panic_probe as _};
|
2023-05-25 00:29:56 +02:00
|
|
|
bind_interrupts!(struct Irqs {
|
|
|
|
ETH => eth::InterruptHandler;
|
|
|
|
});
|
|
|
|
|
2022-12-12 02:04:33 +01:00
|
|
|
type Device = Ethernet<'static, ETH, GenericSMI>;
|
2022-08-09 14:44:18 +02:00
|
|
|
|
|
|
|
#[embassy_executor::task]
|
|
|
|
async fn net_task(stack: &'static Stack<Device>) -> ! {
|
|
|
|
stack.run().await
|
|
|
|
}
|
|
|
|
|
2022-08-17 22:25:58 +02:00
|
|
|
#[embassy_executor::main]
|
|
|
|
async fn main(spawner: Spawner) -> ! {
|
2022-08-09 14:44:18 +02:00
|
|
|
let mut config = Config::default();
|
|
|
|
config.rcc.sys_ck = Some(mhz(400));
|
|
|
|
config.rcc.hclk = Some(mhz(200));
|
|
|
|
config.rcc.pll1.q_ck = Some(mhz(100));
|
2022-08-17 22:25:58 +02:00
|
|
|
let p = embassy_stm32::init(config);
|
2022-08-09 14:44:18 +02:00
|
|
|
info!("Hello World!");
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
let mac_addr = [0x00, 0x00, 0xDE, 0xAD, 0xBE, 0xEF];
|
|
|
|
|
2022-12-12 02:04:33 +01:00
|
|
|
let device = Ethernet::new(
|
2023-06-01 01:32:11 +02:00
|
|
|
make_static!(PacketQueue::<16, 16>::new()),
|
2022-12-12 02:04:33 +01:00
|
|
|
p.ETH,
|
2023-05-25 00:29:56 +02:00
|
|
|
Irqs,
|
2022-12-12 02:04:33 +01:00
|
|
|
p.PA1,
|
|
|
|
p.PA2,
|
|
|
|
p.PC1,
|
|
|
|
p.PA7,
|
|
|
|
p.PC4,
|
|
|
|
p.PC5,
|
|
|
|
p.PG13,
|
|
|
|
p.PB13,
|
|
|
|
p.PG11,
|
|
|
|
GenericSMI,
|
|
|
|
mac_addr,
|
|
|
|
0,
|
|
|
|
);
|
2022-08-09 14:44:18 +02:00
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
let config = embassy_net::Config::Dhcp(Default::default());
|
2023-06-05 14:57:17 +02:00
|
|
|
//let config = embassy_net::Config::StaticV4(embassy_net::StaticConfigV4 {
|
2022-08-09 14:44:18 +02:00
|
|
|
// address: Ipv4Cidr::new(Ipv4Address::new(10, 42, 0, 61), 24),
|
|
|
|
// dns_servers: Vec::new(),
|
|
|
|
// gateway: Some(Ipv4Address::new(10, 42, 0, 1)),
|
|
|
|
//});
|
|
|
|
|
|
|
|
// Init network stack
|
2023-06-01 01:32:11 +02:00
|
|
|
let stack = &*make_static!(Stack::new(
|
|
|
|
device,
|
|
|
|
config,
|
|
|
|
make_static!(StackResources::<2>::new()),
|
|
|
|
seed
|
|
|
|
));
|
2022-08-09 14:44:18 +02:00
|
|
|
|
|
|
|
// Launch network task
|
|
|
|
unwrap!(spawner.spawn(net_task(&stack)));
|
|
|
|
|
|
|
|
info!("Network task initialized");
|
|
|
|
|
|
|
|
// To ensure DHCP configuration before trying connect
|
|
|
|
Timer::after(Duration::from_secs(20)).await;
|
|
|
|
|
|
|
|
static STATE: TcpClientState<1, 1024, 1024> = TcpClientState::new();
|
|
|
|
let client = TcpClient::new(&stack, &STATE);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let addr = SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(10, 42, 0, 1), 8000));
|
|
|
|
|
|
|
|
info!("connecting...");
|
|
|
|
let r = client.connect(addr).await;
|
|
|
|
if let Err(e) = r {
|
|
|
|
info!("connect error: {:?}", e);
|
|
|
|
Timer::after(Duration::from_secs(1)).await;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let mut connection = r.unwrap();
|
|
|
|
info!("connected!");
|
|
|
|
loop {
|
|
|
|
let r = connection.write_all(b"Hello\n").await;
|
|
|
|
if let Err(e) = r {
|
|
|
|
info!("write error: {:?}", e);
|
2023-03-08 03:08:59 +01:00
|
|
|
continue;
|
2022-08-09 14:44:18 +02:00
|
|
|
}
|
|
|
|
Timer::after(Duration::from_secs(1)).await;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|