1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #10145 from gschorcht/drivers_hd44780_fix

drivers/hd44780: fix compilation errors
This commit is contained in:
Kevin "Bear Puncher" Weiss 2018-10-12 09:51:15 +02:00 committed by GitHub
commit 33aa604dd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@
static inline void _command(const hd44780_t *dev, uint8_t value);
static void _pulse(const hd44780_t *dev);
static void _send(const hd44780_t *dev, uint8_t value, uint8_t mode);
static void _send(const hd44780_t *dev, uint8_t value, hd44780_state_t state);
static void _write_bits(const hd44780_t *dev, uint8_t bits, uint8_t value);
/**