This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
可以使用下列的程序
#include "hw_memmap.h" #include "hw_fcfg1.h" #include "hw_types.h" uint64_t macAddrLsb; uint64_t macAddrMsb; uint64_t macAddress; macAddrLsb = HWREG(FCFG1_BASE + FCFG1_O_MAC_15_4_0); macAddrMsb = HWREG(FCFG1_BASE + FCFG1_O_MAC_15_4_1); macAddress = (uint64_t)(macAddrMsb << 32) + macAddrLsb;