1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/sam0_eth: use 64 bit bus

This commit is contained in:
Benjamin Valentin 2023-06-02 17:20:52 +02:00
parent 6b70459f77
commit 04b895ce8a

View File

@ -378,7 +378,8 @@ int sam0_eth_init(void)
/* TODO: implement auto negotiation */
GMAC->NCFGR.reg = GMAC_NCFGR_SPD | GMAC_NCFGR_FD | GMAC_NCFGR_MTIHEN
| GMAC_NCFGR_RXCOEN | GMAC_NCFGR_MAXFS | GMAC_NCFGR_CAF
| GMAC_NCFGR_LFERD | GMAC_NCFGR_RFCS | GMAC_NCFGR_CLK(3);
| GMAC_NCFGR_LFERD | GMAC_NCFGR_RFCS | GMAC_NCFGR_CLK(3)
| GMAC_NCFGR_DBW(1);
/* Enable all multicast addresses */
GMAC->HRB.reg = 0xffffffff;