1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use embedded_hal::spi::FullDuplex;
use w5500::*;
pub const SOCKET_UDP: Socket = Socket::Socket0;
fn get_subnet() -> u8 {
if cfg!(feature = "primary") {
1
} else if cfg!(feature = "secondary") {
2
} else {
unreachable!()
}
}
pub fn init_eth<E: core::fmt::Debug>(
eth: &mut W5500,
spi: &mut FullDuplex<u8, Error = E>,
mac: u8,
ip: u8,
) {
let ip = IpAddress::new(192, 168, get_subnet(), ip);
let mac = MacAddress::new(0x02, 0x01, 0x02, 0x03, 0x04 + get_subnet(), mac);
eth.init(spi).expect("Failed to initialize w5500");
eth.set_mode(spi, false, false, false, true).unwrap();
eth.set_mac(spi, &mac).unwrap();
eth.set_ip(spi, &ip).unwrap();
eth.set_subnet(spi, &IpAddress::new(255, 255, 255, 0))
.unwrap();
eth.set_gateway(spi, &IpAddress::new(192, 168, 1, 254))
.unwrap();
}
pub fn listen_on<E: core::fmt::Debug>(
eth: &mut W5500,
spi: &mut FullDuplex<u8, Error = E>,
port: u16,
socket: Socket,
) {
eth.listen_udp(spi, socket, port).expect("Failed to listen");
}