diff options
Diffstat (limited to 'testhal/STM32L1xx/GPT')
-rw-r--r-- | testhal/STM32L1xx/GPT/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32L1xx/GPT/main.c b/testhal/STM32L1xx/GPT/main.c index 380d9650c..d63743628 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, 1000); /* 0.02 second pulse.*/
+ gptStartOneShotI(&GPTD3, 1000); /* 0.1 second pulse.*/
chSysUnlockFromIsr();
}
|