mirror of
https://github.com/apache/nuttx.git
synced 2026-08-14 08:53:15 +00:00
fix compile error when disabled the flash data cache corruption for stm32 f1xx
This commit is contained in:
parent
e2f3ad5d7c
commit
45f5d30e2e
1 changed files with 2 additions and 0 deletions
|
|
@ -127,6 +127,7 @@ static void flash_lock(void)
|
|||
{
|
||||
modifyreg32(STM32_FLASH_CR, 0, FLASH_CR_LOCK);
|
||||
}
|
||||
#if defined(CONFIG_STM32_FLASH_WORKAROUND_DATA_CACHE_CORRUPTION_ON_RWW)
|
||||
|
||||
static void data_cache_disable(void)
|
||||
{
|
||||
|
|
@ -144,6 +145,7 @@ static void data_cache_enable(void)
|
|||
modifyreg32(STM32_FLASH_ACR, 0, FLASH_ACR_DCEN);
|
||||
}
|
||||
|
||||
#endif
|
||||
/************************************************************************************
|
||||
* Public Functions
|
||||
************************************************************************************/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue