diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-02-05 09:12:17 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-02-05 09:12:17 +0000 |
commit | 28c1f163a94e9aaad5d4ec3f9534b89677f9e5b1 (patch) | |
tree | 389d4127a34f07800a1d742f241fb4d3b095a467 /testhal | |
parent | 932029287de2451ce2710fc6089b3c6598792a97 (diff) | |
download | ChibiOS-28c1f163a94e9aaad5d4ec3f9534b89677f9e5b1.tar.gz ChibiOS-28c1f163a94e9aaad5d4ec3f9534b89677f9e5b1.tar.bz2 ChibiOS-28c1f163a94e9aaad5d4ec3f9534b89677f9e5b1.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3925 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32L1xx/EXT/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/testhal/STM32L1xx/EXT/main.c b/testhal/STM32L1xx/EXT/main.c index 5d8e03009..84d57e682 100644 --- a/testhal/STM32L1xx/EXT/main.c +++ b/testhal/STM32L1xx/EXT/main.c @@ -98,10 +98,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);
}
|