diff options
Diffstat (limited to 'testhal/STM32F1xx/GPT/main.c')
-rw-r--r-- | testhal/STM32F1xx/GPT/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testhal/STM32F1xx/GPT/main.c b/testhal/STM32F1xx/GPT/main.c index f14ffd941..d247980e3 100644 --- a/testhal/STM32F1xx/GPT/main.c +++ b/testhal/STM32F1xx/GPT/main.c @@ -43,7 +43,8 @@ static void gpt2cb(GPTDriver *gptp) { */
static const GPTConfig gpt1cfg = {
10000, /* 10kHz timer clock.*/
- gpt1cb /* Timer callback.*/
+ gpt1cb, /* Timer callback.*/
+ 0
};
/*
@@ -51,7 +52,8 @@ static const GPTConfig gpt1cfg = { */
static const GPTConfig gpt2cfg = {
10000, /* 10kHz timer clock.*/
- gpt2cb /* Timer callback.*/
+ gpt2cb, /* Timer callback.*/
+ 0
};
/*
|