diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2016-11-21 22:25:54 +0100 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2016-11-21 22:25:54 +0100 |
commit | f6f6bf3918d0534606d5b9ecb48f22624e9369c0 (patch) | |
tree | 25c68c33e8e24ad7b9ac8a2ff7a752292e85ad5f /demos/TIVA/RT-TM4C123G-LAUNCHPAD | |
parent | 3ad1b1b07c3372b5d1289531af7c069310843480 (diff) | |
download | ChibiOS-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/TIVA/RT-TM4C123G-LAUNCHPAD')
-rw-r--r-- | demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c | 2 |
1 files changed, 1 insertions, 1 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; |