cc1310 flash源码中 efuse是什么意思?FlashEfuseReadRow()
时间:12-23
整理:3721RD
点击:
//*****************************************************************************
//
//! 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;
eFuse是烧结在芯片里面的一些参数,只读的。
具体可以看一下TRM里面关于efuse的相关章节。