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

Merge pull request #12670 from benpicco/driver_hd44780-revert

Revert "drivers/hd44780: add short delay after each character"
This commit is contained in:
Alexandre Abadie 2019-11-08 13:56:21 +01:00 committed by GitHub
commit 507a7b9cb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,8 +83,6 @@ static void _send(const hd44780_t *dev, uint8_t value, hd44780_state_t state)
_write_bits(dev, 4, value>>4);
_write_bits(dev, 4, value);
}
xtimer_usleep(HD44780_PULSE_WAIT_SHORT);
}
static void _write_bits(const hd44780_t *dev, uint8_t bits, uint8_t value)