diff options
Diffstat (limited to 'testhal/STM32F1xx/IRQ_STORM/main.c')
-rw-r--r-- | testhal/STM32F1xx/IRQ_STORM/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testhal/STM32F1xx/IRQ_STORM/main.c b/testhal/STM32F1xx/IRQ_STORM/main.c index 8961668b0..a029e02dc 100644 --- a/testhal/STM32F1xx/IRQ_STORM/main.c +++ b/testhal/STM32F1xx/IRQ_STORM/main.c @@ -147,7 +147,8 @@ static void gpt2cb(GPTDriver *gptp) { */
static const GPTConfig gpt1cfg = {
1000000, /* 1MHz timer clock.*/
- gpt1cb /* Timer callback.*/
+ gpt1cb, /* Timer callback.*/
+ 0
};
/*
@@ -155,7 +156,8 @@ static const GPTConfig gpt1cfg = { */
static const GPTConfig gpt2cfg = {
1000000, /* 1MHz timer clock.*/
- gpt2cb /* Timer callback.*/
+ gpt2cb, /* Timer callback.*/
+ 0
};
|