aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F1xx/GPT/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-15 08:17:27 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-15 08:17:27 +0000
commit9568ccf9d193dc60cf3f07b18cab9079e5fcbb18 (patch)
treed2dbc18f425b8b5601d17e61f1aa14a9675ae4e3 /testhal/STM32F1xx/GPT/main.c
parent7391ec61e2ae42133c076d10899af324776e8255 (diff)
downloadChibiOS-9568ccf9d193dc60cf3f07b18cab9079e5fcbb18.tar.gz
ChibiOS-9568ccf9d193dc60cf3f07b18cab9079e5fcbb18.tar.bz2
ChibiOS-9568ccf9d193dc60cf3f07b18cab9079e5fcbb18.zip
Upgrades to STM32 GPT, ICU and PWM drivers.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6150 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F1xx/GPT/main.c')
-rw-r--r--testhal/STM32F1xx/GPT/main.c6
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
};
/*