1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

F446 support

This commit is contained in:
jflyper 2017-12-08 02:35:06 +09:00
parent f6c7003ab1
commit 67b9966dc6
11 changed files with 950 additions and 2 deletions

View file

@ -1018,7 +1018,7 @@ void PWR_ClearFlag(uint32_t PWR_FLAG)
/* Check the parameters */
assert_param(IS_PWR_CLEAR_FLAG(PWR_FLAG));
#if defined (STM32F427_437xx) || defined (STM32F429_439xx)
#if defined (STM32F427_437xx) || defined (STM32F429_439xx) || defined (STM32F446xx)
if (PWR_FLAG != PWR_FLAG_UDRDY)
{
PWR->CR |= PWR_FLAG << 2;