aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-01-16 10:27:42 +0100
committerJoel Bodenmann <joel@unormal.org>2013-01-16 10:27:42 +0100
commit1f1dd626871835547b5875e2e48d64e35c55f850 (patch)
tree98231533f523fe766c06ca6c1b2e899a76ced825 /include
parentd7b85cb00e7c38ca131541ae4849edf4abf5cc8e (diff)
downloaduGFX-1f1dd626871835547b5875e2e48d64e35c55f850.tar.gz
uGFX-1f1dd626871835547b5875e2e48d64e35c55f850.tar.bz2
uGFX-1f1dd626871835547b5875e2e48d64e35c55f850.zip
TDISP update
Diffstat (limited to 'include')
-rw-r--r--include/tdisp/tdisp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tdisp/tdisp.h b/include/tdisp/tdisp.h
index 88c560ce..c9a8f842 100644
--- a/include/tdisp/tdisp.h
+++ b/include/tdisp/tdisp.h
@@ -90,7 +90,7 @@ void tdispHome(void);
* @param[in] col The column
* @param[in] row The row
*/
-void tdispGotoXY(coord_t col, coord_t row);
+void tdispSetCursor(coord_t col, coord_t row);
/**
* @brief Store a custom character in RAM
@@ -98,10 +98,10 @@ void tdispGotoXY(coord_t col, coord_t row);
* @note This usually must be done after each power-up since most
* LCDs lose their RAM content.
*
- * @param[in] location On which address to store the character (from 0 up to max)
+ * @param[in] address On which address to store the character (from 0 up to max)
* @param[in] charmap The character to be stored.
*/
-void tdispCreateChar(uint8_t location, char *charmap);
+void tdispCreateChar(uint8_t address, char *charmap);
/**
* @brief Draws a single character at the current cursor position