You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let rx_descriptor_addr = eth_dma.dmaccarx_dr.read().bits();
299
299
let rx_buffer_addr = eth_dma.dmaccarx_br.read().bits();
300
300
301
+
// TODO: add a link to a/the github issue describing this problem,
302
+
// and how to solve it.
301
303
panic!("Fatal bus error! Is the descriptor and buffer memory accessible by the Ethernet MAC/DMA? TXDESC: {:08X}, TXBUF: {:08X}, RXDESC: {:08X}, TXDESC: {:08X}", tx_descriptor_addr, tx_buffer_addr, rx_descriptor_addr, rx_buffer_addr);
0 commit comments