diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-03-28 20:38:51 -0300 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-03-28 20:38:51 -0300 |
commit | 1b08012c7567e7ddabd7483d24c7e11919a76f3c (patch) | |
tree | 4bae5eb90713a09dd408121c5c35596df27be8f2 /demos/KINETIS/RT-TEENSY3/main.c | |
parent | 778340c65318a9935a2f937ff520a32397fd07ad (diff) | |
parent | 341cad14a9ca8c2ed6b8a8b3a7e7183c71e00e70 (diff) | |
download | ChibiOS-Contrib-1b08012c7567e7ddabd7483d24c7e11919a76f3c.tar.gz ChibiOS-Contrib-1b08012c7567e7ddabd7483d24c7e11919a76f3c.tar.bz2 ChibiOS-Contrib-1b08012c7567e7ddabd7483d24c7e11919a76f3c.zip |
Merge flabbergast-kinetis
Diffstat (limited to 'demos/KINETIS/RT-TEENSY3/main.c')
-rw-r--r-- | demos/KINETIS/RT-TEENSY3/main.c | 2 |
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);
}
}
|