diff options
Diffstat (limited to 'testhal/STM32F4xx/IRQ_STORM_FPU/main.c')
-rw-r--r-- | testhal/STM32F4xx/IRQ_STORM_FPU/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testhal/STM32F4xx/IRQ_STORM_FPU/main.c b/testhal/STM32F4xx/IRQ_STORM_FPU/main.c index 4b925d600..7ec769a9c 100644 --- a/testhal/STM32F4xx/IRQ_STORM_FPU/main.c +++ b/testhal/STM32F4xx/IRQ_STORM_FPU/main.c @@ -128,6 +128,7 @@ static void gpt3cb(GPTDriver *gptp) { static const GPTConfig gpt4cfg = {
1000000, /* 1MHz timer clock.*/
gpt4cb, /* Timer callback.*/
+ 0,
0
};
@@ -137,6 +138,7 @@ static const GPTConfig gpt4cfg = { static const GPTConfig gpt3cfg = {
1000000, /* 1MHz timer clock.*/
gpt3cb, /* Timer callback.*/
+ 0,
0
};
|