mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 20:35:33 +03:00
Fix missing & operator.
This commit is contained in:
parent
37e551db11
commit
7f42149c30
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ void systemInit(void)
|
||||||
cycleCounterInit();
|
cycleCounterInit();
|
||||||
|
|
||||||
|
|
||||||
memset(exti15_10_handlers, 0, sizeof(exti15_10_handlers));
|
memset(&exti15_10_handlers, 0x00, sizeof(exti15_10_handlers));
|
||||||
// SysTick
|
// SysTick
|
||||||
SysTick_Config(SystemCoreClock / 1000);
|
SysTick_Config(SystemCoreClock / 1000);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue