//*****************************************************************************
//
//! Reads efuse data from specified row 从指定行读取efuse数据
//
//*****************************************************************************
bool FlashEfuseReadRow(uint32_t *pui32EfuseData, uint32_t ui32RowAddress)// efuse数据 是什么数据?
[
bool bStatus;
//
// Make sure the clock for the efuse is enabled
//
HWREG(FLASH_BASE + FLASH_O_CFG) &= ~FLASH_CFG_DIS_EFUSECLK;
2019-9-16 10:58:29
eFuse是烧结在芯片里面的一些参数,只读的。
具体可以看一下TRM里面关于efuse的相关章节。
BR. AZ
eFuse是烧结在芯片里面的一些参数,只读的。
具体可以看一下TRM里面关于efuse的相关章节。
BR. AZ
举报