diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-18 22:39:46 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-18 22:39:46 +0000 |
commit | ebb4159a648daef06f9adeaf5a39ec57496408be (patch) | |
tree | ed148319e9b8d72f2ec739d26594b4f12fabb251 /testhal | |
parent | bf6ca955f1c2248138d51df53bb3767bd8c63a4b (diff) | |
download | ChibiOS-ebb4159a648daef06f9adeaf5a39ec57496408be.tar.gz ChibiOS-ebb4159a648daef06f9adeaf5a39ec57496408be.tar.bz2 ChibiOS-ebb4159a648daef06f9adeaf5a39ec57496408be.zip |
EXT_WAKEUP test minor improvements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3344 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32F1xx/EXT_WAKEUP/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32F1xx/EXT_WAKEUP/main.c b/testhal/STM32F1xx/EXT_WAKEUP/main.c index 23c208873..f12a54207 100644 --- a/testhal/STM32F1xx/EXT_WAKEUP/main.c +++ b/testhal/STM32F1xx/EXT_WAKEUP/main.c @@ -32,7 +32,7 @@ static void extcb2(EXTDriver *extp, expchannel_t channel) { (void)channel;
chSysLockFromIsr();
- /* we MUST reinit clocks after waking up*/
+ /* we MUST reinit clocks after waking up if use HSE or HSI+PLL */
stm32_clock_init();
extChannelDisableI(&EXTD1, 10);
|