aboutsummaryrefslogtreecommitdiffstats
path: root/demos/KINETIS/RT-TEENSY3/main.c
diff options
context:
space:
mode:
authorflabbergast <s3+flabbergast@sdfeu.org>2016-03-22 20:14:43 +0000
committerflabbergast <s3+flabbergast@sdfeu.org>2016-03-22 20:15:49 +0000
commitac8960f1a83ea19645ca969e6c525defd8f47ff7 (patch)
tree68d5d030873c2d054549f9c7871bf934d4595d7a /demos/KINETIS/RT-TEENSY3/main.c
parentad63d7978057b70eacff2fe8617198bf4aedc3b6 (diff)
downloadChibiOS-Contrib-ac8960f1a83ea19645ca969e6c525defd8f47ff7.tar.gz
ChibiOS-Contrib-ac8960f1a83ea19645ca969e6c525defd8f47ff7.tar.bz2
ChibiOS-Contrib-ac8960f1a83ea19645ca969e6c525defd8f47ff7.zip
[KINETIS] Update demos (for HAL changes).
Diffstat (limited to 'demos/KINETIS/RT-TEENSY3/main.c')
-rw-r--r--demos/KINETIS/RT-TEENSY3/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/KINETIS/RT-TEENSY3/main.c b/demos/KINETIS/RT-TEENSY3/main.c
index 591bd0f..ebeb637 100644
--- a/demos/KINETIS/RT-TEENSY3/main.c
+++ b/demos/KINETIS/RT-TEENSY3/main.c
@@ -27,7 +27,7 @@ static THD_FUNCTION(Thread1, arg) {
(void)arg;
chRegSetThreadName("LEDBlinker");
while (true) {
- palTogglePad(IOPORT3, PORTC_TEENSY_PIN13);
+ palTogglePad(TEENSY_PIN13_IOPORT, TEENSY_PIN13);
chThdSleepMilliseconds(500);
}
}