2020-06-18 15:00:49 +08:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
|
|
|
|
extern crate panic_itm;
|
2020-06-24 11:18:23 +08:00
|
|
|
use cortex_m::iprintln;
|
2020-06-18 15:00:49 +08:00
|
|
|
|
|
|
|
use cortex_m_rt::entry;
|
|
|
|
use embedded_hal::digital::v2::OutputPin;
|
|
|
|
use embedded_hal::blocking::delay::DelayMs;
|
|
|
|
use stm32f4xx_hal::{
|
|
|
|
rcc::RccExt,
|
|
|
|
gpio::GpioExt,
|
|
|
|
time::U32Ext,
|
|
|
|
stm32::{CorePeripherals, Peripherals},
|
|
|
|
delay::Delay,
|
2020-08-24 12:07:45 +08:00
|
|
|
spi::Spi,
|
|
|
|
time::Hertz
|
2020-06-18 15:00:49 +08:00
|
|
|
};
|
|
|
|
use enc424j600;
|
|
|
|
use enc424j600::EthController;
|
|
|
|
|
|
|
|
#[entry]
|
|
|
|
fn main() -> ! {
|
|
|
|
let mut cp = CorePeripherals::take().unwrap();
|
|
|
|
cp.SCB.enable_icache();
|
|
|
|
cp.SCB.enable_dcache(&mut cp.CPUID);
|
|
|
|
|
|
|
|
let dp = Peripherals::take().unwrap();
|
|
|
|
let clocks = dp.RCC.constrain()
|
|
|
|
.cfgr
|
|
|
|
.sysclk(168.mhz())
|
|
|
|
.hclk(168.mhz())
|
|
|
|
.pclk1(32.mhz())
|
|
|
|
.pclk2(64.mhz())
|
|
|
|
.freeze();
|
|
|
|
let mut delay = Delay::new(cp.SYST, clocks);
|
|
|
|
|
2020-06-24 11:11:21 +08:00
|
|
|
// Init ITM & use Stimulus Port 0
|
2020-06-18 15:00:49 +08:00
|
|
|
let mut itm = cp.ITM;
|
|
|
|
let stim0 = &mut itm.stim[0];
|
|
|
|
|
|
|
|
iprintln!(stim0,
|
2020-06-24 11:18:23 +08:00
|
|
|
"Eth TX Pinging on STM32-F407 via NIC100/ENC424J600");
|
2020-06-18 15:00:49 +08:00
|
|
|
|
|
|
|
// NIC100 / ENC424J600 Set-up
|
|
|
|
let spi1 = dp.SPI1;
|
|
|
|
let gpioa = dp.GPIOA.split();
|
|
|
|
// Mapping: see Table 9, STM32F407ZG Manual
|
|
|
|
let spi1_sck = gpioa.pa5.into_alternate_af5();
|
|
|
|
let spi1_miso = gpioa.pa6.into_alternate_af5();
|
|
|
|
let spi1_mosi = gpioa.pa7.into_alternate_af5();
|
|
|
|
let spi1_nss = gpioa.pa4.into_push_pull_output();
|
|
|
|
// Map SPISEL: see Table 1, NIC100 Manual
|
|
|
|
let mut spisel = gpioa.pa1.into_push_pull_output();
|
|
|
|
spisel.set_high().unwrap();
|
|
|
|
delay.delay_ms(1_u32);
|
|
|
|
spisel.set_low().unwrap();
|
|
|
|
// Create SPI1 for HAL
|
|
|
|
let spi_eth_port = Spi::spi1(
|
|
|
|
spi1, (spi1_sck, spi1_miso, spi1_mosi),
|
2020-08-17 15:51:25 +08:00
|
|
|
enc424j600::spi::interfaces::SPI_MODE,
|
2020-08-24 12:07:45 +08:00
|
|
|
Hertz(enc424j600::spi::interfaces::SPI_CLOCK_FREQ),
|
2020-06-18 15:00:49 +08:00
|
|
|
clocks);
|
|
|
|
let mut spi_eth = enc424j600::SpiEth::new(spi_eth_port, spi1_nss);
|
|
|
|
// Init
|
|
|
|
match spi_eth.init_dev() {
|
|
|
|
Ok(_) => {
|
|
|
|
iprintln!(stim0, "Ethernet initialised.")
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
panic!("Ethernet initialisation Failed!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read MAC
|
|
|
|
let mut eth_mac_addr: [u8; 6] = [0; 6];
|
|
|
|
spi_eth.read_from_mac(&mut eth_mac_addr);
|
|
|
|
iprintln!(stim0,
|
|
|
|
"MAC Address = {:02x}-{:02x}-{:02x}-{:02x}-{:02x}-{:02x}",
|
2020-06-24 11:11:21 +08:00
|
|
|
eth_mac_addr[0], eth_mac_addr[1],
|
|
|
|
eth_mac_addr[2], eth_mac_addr[3],
|
|
|
|
eth_mac_addr[4], eth_mac_addr[5]);
|
2020-06-18 15:00:49 +08:00
|
|
|
// Set to promiscuous mode
|
|
|
|
spi_eth.set_promiscuous();
|
|
|
|
iprintln!(stim0,
|
|
|
|
"Promiscuous Mode ON");
|
|
|
|
|
|
|
|
// Init Rx/Tx buffers
|
|
|
|
spi_eth.init_rxbuf();
|
|
|
|
spi_eth.init_txbuf();
|
|
|
|
// Testing Eth TX
|
|
|
|
let eth_tx_dat: [u8; 64] = [
|
|
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x08, 0x60,
|
|
|
|
0x6e, 0x44, 0x42, 0x95, 0x08, 0x06, 0x00, 0x01,
|
|
|
|
0x08, 0x00, 0x06, 0x04, 0x00, 0x01, 0x08, 0x60,
|
|
|
|
0x6e, 0x44, 0x42, 0x95, 0xc0, 0xa8, 0x01, 0x64,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xa8,
|
|
|
|
0x01, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x69, 0xd0, 0x85, 0x9f
|
|
|
|
];
|
|
|
|
loop {
|
|
|
|
let mut eth_tx_packet = enc424j600::tx::TxPacket::new();
|
|
|
|
eth_tx_packet.update_frame(ð_tx_dat, 64);
|
|
|
|
iprintln!(stim0,
|
|
|
|
"Sending packet (len={:}): \
|
|
|
|
dest={:02x}-{:02x}-{:02x}-{:02x}-{:02x}-{:02x} \
|
|
|
|
src={:02x}-{:02x}-{:02x}-{:02x}-{:02x}-{:02x} \
|
|
|
|
data={:02x}{:02x}{:02x}{:02x} {:02x}{:02x}{:02x}{:02x} ...",
|
|
|
|
eth_tx_packet.get_frame_length(),
|
|
|
|
eth_tx_packet.get_frame_byte(0), eth_tx_packet.get_frame_byte(1), eth_tx_packet.get_frame_byte(2),
|
|
|
|
eth_tx_packet.get_frame_byte(3), eth_tx_packet.get_frame_byte(4), eth_tx_packet.get_frame_byte(5),
|
|
|
|
eth_tx_packet.get_frame_byte(6), eth_tx_packet.get_frame_byte(7), eth_tx_packet.get_frame_byte(8),
|
|
|
|
eth_tx_packet.get_frame_byte(9), eth_tx_packet.get_frame_byte(10), eth_tx_packet.get_frame_byte(11),
|
|
|
|
eth_tx_packet.get_frame_byte(12), eth_tx_packet.get_frame_byte(13),
|
|
|
|
eth_tx_packet.get_frame_byte(14), eth_tx_packet.get_frame_byte(15),
|
|
|
|
eth_tx_packet.get_frame_byte(16), eth_tx_packet.get_frame_byte(17),
|
|
|
|
eth_tx_packet.get_frame_byte(18), eth_tx_packet.get_frame_byte(19)
|
|
|
|
);
|
2020-06-24 11:11:21 +08:00
|
|
|
spi_eth.send_raw_packet(ð_tx_packet);
|
2020-06-18 15:00:49 +08:00
|
|
|
iprintln!(stim0,
|
|
|
|
"Packet sent");
|
|
|
|
delay.delay_ms(100_u32);
|
|
|
|
}
|
|
|
|
|
|
|
|
unreachable!()
|
|
|
|
}
|