diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-01-16 15:20:47 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-01-16 15:20:47 +0100 |
commit | 1a05e4a89ad7351e81da0e4dd152a7375a457884 (patch) | |
tree | 5fe956e67796778248d32d7f4ddaa5dfb08b54c6 /src | |
parent | a278e1c11377bb01e080d0f2ac2012e34737b651 (diff) | |
download | uGFX-1a05e4a89ad7351e81da0e4dd152a7375a457884.tar.gz uGFX-1a05e4a89ad7351e81da0e4dd152a7375a457884.tar.bz2 uGFX-1a05e4a89ad7351e81da0e4dd152a7375a457884.zip |
some more TDISP cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/tdisp/tdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tdisp/tdisp.c b/src/tdisp/tdisp.c index a7e0745d..8a2c501a 100644 --- a/src/tdisp/tdisp.c +++ b/src/tdisp/tdisp.c @@ -71,11 +71,11 @@ void tdispSetAttributes(uint8_t attributes) { } void tdispClear(void) { - tdisp_lld_write_cmd(0x01); + tdisp_lld_clear(); } void tdispHome(void) { - tdisp_lld_write_cmd(0x02); + tdisp_lld_home(); } void tdispCreateChar(uint8_t address, char *charmap) { |