1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 09:45:37 +03:00

Add brackets to enslose an expression

This commit is contained in:
Faduf 2017-07-06 00:09:14 +02:00
parent f47b438918
commit 57f4c955f4

View file

@ -35,7 +35,7 @@
#define PLL_N_OC 480 #define PLL_N_OC 480
#define PLL_P_OC 2 #define PLL_P_OC 2
#define PLL_Q_OC 10 #define PLL_Q_OC 10
#define OC_FREQUENCY_HZ PLL_N_OC/PLL_P_OC*1000000 #define OC_FREQUENCY_HZ (1000000*PLL_N_OC/PLL_P_OC)
extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
extern void SystemInit(void); extern void SystemInit(void);