mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-18 22:05:17 +03:00
Add support for Colibri fc, used in Gemini racer hex
This commit is contained in:
parent
e4011e9c5e
commit
8fce0c2e6e
6 changed files with 390 additions and 0 deletions
|
@ -371,7 +371,11 @@ uint32_t hse_value = HSE_VALUE;
|
|||
/************************* PLL Parameters *************************************/
|
||||
#if defined(STM32F40_41xxx) || defined(STM32F427_437xx) || defined(STM32F429_439xx) || defined(STM32F401xx) || defined(STM32F469_479xx)
|
||||
/* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N */
|
||||
#if defined(COLIBRI)
|
||||
#define PLL_M 16
|
||||
#else
|
||||
#define PLL_M 8
|
||||
#endif
|
||||
#elif defined (STM32F446xx)
|
||||
#define PLL_M 8
|
||||
#elif defined (STM32F410xx) || defined (STM32F411xE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue