1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 00:35:39 +03:00

F7 VCP improvements

This commit is contained in:
Sami Korhonen 2016-09-30 13:23:44 +03:00
parent d53b6584a0
commit 2a91c807c0
5 changed files with 19 additions and 25 deletions

View file

@ -638,23 +638,6 @@ int main(void)
}
#endif
#ifdef USE_HAL_DRIVER
/**
* @brief CPU L1-Cache enable.
* @param None
* @retval None
*/
static void CPU_CACHE_Enable(void)
{
/* Enable I-Cache */
SCB_EnableICache();
/* Enable D-Cache */
SCB_EnableDCache();
}
#endif
#ifdef DEBUG_HARDFAULTS
//from: https://mcuoneclipse.com/2012/11/24/debugging-hard-faults-on-arm-cortex-m/
/**