-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
157 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// required-features: eth | ||
#![no_std] | ||
#![no_main] | ||
#![feature(type_alias_impl_trait)] | ||
|
||
#[path = "../common.rs"] | ||
mod common; | ||
use common::*; | ||
use embassy_executor::Spawner; | ||
use embassy_net::{Stack, StackResources}; | ||
use embassy_stm32::eth::generic_smi::GenericSMI; | ||
use embassy_stm32::eth::{Ethernet, PacketQueue}; | ||
use embassy_stm32::peripherals::ETH; | ||
use embassy_stm32::rng::Rng; | ||
use embassy_stm32::{bind_interrupts, eth, peripherals, rng}; | ||
use rand_core::RngCore; | ||
use static_cell::make_static; | ||
use {defmt_rtt as _, panic_probe as _}; | ||
|
||
teleprobe_meta::timeout!(120); | ||
|
||
#[cfg(not(feature = "stm32h563zi"))] | ||
bind_interrupts!(struct Irqs { | ||
ETH => eth::InterruptHandler; | ||
HASH_RNG => rng::InterruptHandler<peripherals::RNG>; | ||
}); | ||
#[cfg(feature = "stm32h563zi")] | ||
bind_interrupts!(struct Irqs { | ||
ETH => eth::InterruptHandler; | ||
RNG => rng::InterruptHandler<peripherals::RNG>; | ||
}); | ||
|
||
type Device = Ethernet<'static, ETH, GenericSMI>; | ||
|
||
#[embassy_executor::task] | ||
async fn net_task(stack: &'static Stack<Device>) -> ! { | ||
stack.run().await | ||
} | ||
|
||
#[embassy_executor::main] | ||
async fn main(spawner: Spawner) { | ||
let p = embassy_stm32::init(config()); | ||
info!("Hello World!"); | ||
|
||
// Generate random seed. | ||
let mut rng = Rng::new(p.RNG, Irqs); | ||
let mut seed = [0; 8]; | ||
rng.fill_bytes(&mut seed); | ||
let seed = u64::from_le_bytes(seed); | ||
|
||
// Ensure different boards get different MAC | ||
// so running tests concurrently doesn't break (they're all in the same LAN) | ||
#[cfg(feature = "stm32f429zi")] | ||
let n = 1; | ||
#[cfg(feature = "stm32h755zi")] | ||
let n = 2; | ||
#[cfg(feature = "stm32h563zi")] | ||
let n = 3; | ||
|
||
let mac_addr = [0x00, n, 0xDE, 0xAD, 0xBE, 0xEF]; | ||
|
||
let device = Ethernet::new( | ||
make_static!(PacketQueue::<16, 16>::new()), | ||
p.ETH, | ||
Irqs, | ||
p.PA1, | ||
p.PA2, | ||
p.PC1, | ||
p.PA7, | ||
p.PC4, | ||
p.PC5, | ||
p.PG13, | ||
#[cfg(not(feature = "stm32h563zi"))] | ||
p.PB13, | ||
#[cfg(feature = "stm32h563zi")] | ||
p.PB15, | ||
p.PG11, | ||
GenericSMI::new(), | ||
mac_addr, | ||
0, | ||
); | ||
|
||
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)), | ||
//}); | ||
|
||
// Init network stack | ||
let stack = &*make_static!(Stack::new( | ||
device, | ||
config, | ||
make_static!(StackResources::<2>::new()), | ||
seed | ||
)); | ||
|
||
// Launch network task | ||
unwrap!(spawner.spawn(net_task(&stack))); | ||
|
||
perf_client::run( | ||
stack, | ||
perf_client::Expected { | ||
down_kbps: 500, | ||
up_kbps: 500, | ||
updown_kbps: 300, | ||
}, | ||
) | ||
.await; | ||
|
||
info!("Test OK"); | ||
cortex_m::asm::bkpt(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters