diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-02-05 08:48:43 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-02-05 08:48:43 +0000 |
commit | a0f9f4ad2bd7177633284cf7d7156de51462beba (patch) | |
tree | 1f3dd2dd1d414bae79e18e9118fff469daf8834d /testhal | |
parent | 3268a6c4ab856a026a7ab659d036a5a7ef642089 (diff) | |
download | ChibiOS-a0f9f4ad2bd7177633284cf7d7156de51462beba.tar.gz ChibiOS-a0f9f4ad2bd7177633284cf7d7156de51462beba.tar.bz2 ChibiOS-a0f9f4ad2bd7177633284cf7d7156de51462beba.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3916 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32F4xx/EXT/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/testhal/STM32F4xx/EXT/main.c b/testhal/STM32F4xx/EXT/main.c index 9b9956bdc..e79618715 100644 --- a/testhal/STM32F4xx/EXT/main.c +++ b/testhal/STM32F4xx/EXT/main.c @@ -100,10 +100,8 @@ int main(void) { * button EXT channel using 5 seconds intervals.
*/
while (TRUE) {
- EXTI->SWIER = 64;
chThdSleepMilliseconds(5000);
extChannelDisable(&EXTD1, 0);
- EXTI->SWIER = 64;
chThdSleepMilliseconds(5000);
extChannelEnable(&EXTD1, 0);
}
|