mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 12:25:20 +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();
|
||||
|
||||
|
||||
memset(exti15_10_handlers, 0, sizeof(exti15_10_handlers));
|
||||
memset(&exti15_10_handlers, 0x00, sizeof(exti15_10_handlers));
|
||||
// SysTick
|
||||
SysTick_Config(SystemCoreClock / 1000);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue