aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2016-11-21 22:25:54 +0100
committermarcoveeneman <marco-veeneman@hotmail.com>2016-11-21 22:25:54 +0100
commitf6f6bf3918d0534606d5b9ecb48f22624e9369c0 (patch)
tree25c68c33e8e24ad7b9ac8a2ff7a752292e85ad5f /demos
parent3ad1b1b07c3372b5d1289531af7c069310843480 (diff)
downloadChibiOS-Contrib-f6f6bf3918d0534606d5b9ecb48f22624e9369c0.tar.gz
ChibiOS-Contrib-f6f6bf3918d0534606d5b9ecb48f22624e9369c0.tar.bz2
ChibiOS-Contrib-f6f6bf3918d0534606d5b9ecb48f22624e9369c0.zip
Fixed incorrect type used for line field in led_config structures.
Diffstat (limited to 'demos')
-rw-r--r--demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c2
-rw-r--r--demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c b/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
index 6522049..5b7e12c 100644
--- a/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
+++ b/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
@@ -20,7 +20,7 @@
typedef struct led_config
{
- ioportid_t line;
+ ioline_t line;
uint32_t sleep;
} led_config_t;
diff --git a/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c b/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c
index 968a8e5..ef3957f 100644
--- a/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c
+++ b/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c
@@ -20,7 +20,7 @@
typedef struct led_config
{
- ioportid_t line;
+ ioline_t line;
uint32_t sleep;
} led_config_t;