aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-01-16 10:37:56 +0100
committerJoel Bodenmann <joel@unormal.org>2013-01-16 10:37:56 +0100
commita278e1c11377bb01e080d0f2ac2012e34737b651 (patch)
tree8f5a33a0a2338d451b8dd9cb402552e6a9f8caf3 /include
parent1e4cb14188328df44d450467a5db2f3a6afe843b (diff)
downloaduGFX-a278e1c11377bb01e080d0f2ac2012e34737b651.tar.gz
uGFX-a278e1c11377bb01e080d0f2ac2012e34737b651.tar.bz2
uGFX-a278e1c11377bb01e080d0f2ac2012e34737b651.zip
removed internal TDISP_LLD() macro
Diffstat (limited to 'include')
-rw-r--r--include/tdisp/lld/tdisp_lld.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/tdisp/lld/tdisp_lld.h b/include/tdisp/lld/tdisp_lld.h
index a8f2e4b1..8650d887 100644
--- a/include/tdisp/lld/tdisp_lld.h
+++ b/include/tdisp/lld/tdisp_lld.h
@@ -37,9 +37,11 @@
extern "C" {
#endif
-extern bool_t foo(void);
-extern void write_cmd(uint8_t data);
-extern void write_data(uint8_t data);
+extern void tdisp_lld_write_cmd(uint8_t data);
+extern void tdisp_lld_write_data(uint8_t data);
+extern bool_t tdisp_lld_init(void);
+extern void tdisp_lld_set_cursor(coord_t col, coord_t row);
+extern void tdisp_lld_create_char(uint8_t address, char *charmap);
#ifdef __cplusplus
}