aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32L1xx/GPT
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-09-19 14:01:42 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-09-19 14:01:42 +0000
commitf5c7e2f7cd4e43f272db4e9f053053eea9f92dde (patch)
treeb7d3967ce317ed913816d56863a06aec6cc12e99 /testhal/STM32L1xx/GPT
parent31a099cb104ea4d7d957bb65bbdc7e8edbdbe636 (diff)
downloadChibiOS-f5c7e2f7cd4e43f272db4e9f053053eea9f92dde.tar.gz
ChibiOS-f5c7e2f7cd4e43f272db4e9f053053eea9f92dde.tar.bz2
ChibiOS-f5c7e2f7cd4e43f272db4e9f053053eea9f92dde.zip
Fixed an STM32 GPT driver problem.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3353 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32L1xx/GPT')
-rw-r--r--testhal/STM32L1xx/GPT/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32L1xx/GPT/main.c b/testhal/STM32L1xx/GPT/main.c
index 4fadc4f9c..380d9650c 100644
--- a/testhal/STM32L1xx/GPT/main.c
+++ b/testhal/STM32L1xx/GPT/main.c
@@ -29,7 +29,7 @@ static void gpt2cb(GPTDriver *gptp) {
(void)gptp;
palSetPad(GPIOB, GPIOB_LED4);
chSysLockFromIsr();
- gptStartOneShotI(&GPTD3, 200); /* 0.02 second pulse.*/
+ gptStartOneShotI(&GPTD3, 1000); /* 0.02 second pulse.*/
chSysUnlockFromIsr();
}