aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F37x/EXT/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-03-12 13:15:12 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-03-12 13:15:12 +0000
commit5bda88234e2c8e69037ddef4d8dfdf8cdf4c5e97 (patch)
tree88f57ec9511b29c5938a35431ee8ee23cc22f787 /testhal/STM32F37x/EXT/main.c
parent1c0fb671dac92f9e4a49ee96610d809d37e29db1 (diff)
downloadChibiOS-5bda88234e2c8e69037ddef4d8dfdf8cdf4c5e97.tar.gz
ChibiOS-5bda88234e2c8e69037ddef4d8dfdf8cdf4c5e97.tar.bz2
ChibiOS-5bda88234e2c8e69037ddef4d8dfdf8cdf4c5e97.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5417 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F37x/EXT/main.c')
-rw-r--r--testhal/STM32F37x/EXT/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32F37x/EXT/main.c b/testhal/STM32F37x/EXT/main.c
index 12c5f060b..567ba2842 100644
--- a/testhal/STM32F37x/EXT/main.c
+++ b/testhal/STM32F37x/EXT/main.c
@@ -24,7 +24,7 @@
static void led5off(void *arg) {
(void)arg;
- palClearPad(GPIOE, GPIOE_LED10_RED);
+ palClearPad(GPIOC, GPIOC_LED1);
}
/* Triggered when the button is pressed or released. The LED5 is set to ON.*/
@@ -34,7 +34,7 @@ static void extcb1(EXTDriver *extp, expchannel_t channel) {
(void)extp;
(void)channel;
- palSetPad(GPIOE, GPIOE_LED10_RED);
+ palSetPad(GPIOC, GPIOC_LED1);
chSysLockFromIsr();
if (chVTIsArmedI(&vt4))
chVTResetI(&vt4);