Fix missing & operator.

This commit is contained in:
Dominic Clifton 2015-04-16 02:02:53 +01:00
parent 37e551db11
commit 7f42149c30
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}