From 9568ccf9d193dc60cf3f07b18cab9079e5fcbb18 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 15 Aug 2013 08:17:27 +0000 Subject: 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 --- testhal/STM32F4xx/GPT/main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'testhal/STM32F4xx/GPT/main.c') diff --git a/testhal/STM32F4xx/GPT/main.c b/testhal/STM32F4xx/GPT/main.c index 4b0031dc3..a95d5fe81 100644 --- a/testhal/STM32F4xx/GPT/main.c +++ b/testhal/STM32F4xx/GPT/main.c @@ -43,7 +43,8 @@ static void gpt3cb(GPTDriver *gptp) { */ static const GPTConfig gpt2cfg = { 10000, /* 10kHz timer clock.*/ - gpt2cb /* Timer callback.*/ + gpt2cb, /* Timer callback.*/ + 0 }; /* @@ -51,7 +52,8 @@ static const GPTConfig gpt2cfg = { */ static const GPTConfig gpt3cfg = { 10000, /* 10kHz timer clock.*/ - gpt3cb /* Timer callback.*/ + gpt3cb, /* Timer callback.*/ + 0 }; /* -- cgit v1.2.3