aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F37x/EXT/main.c
diff options
context:
space:
mode:
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);