diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-10-13 01:05:20 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-10-13 01:05:20 +0200 |
commit | 6546c032504e8c671eba9d447d09110b14c88d99 (patch) | |
tree | 4340bab2a97bfb49afdbd8405b7c652111e9d1ee /src | |
parent | 9174141aca356daaedadf23c098bca3e35cdbc58 (diff) | |
download | uGFX-6546c032504e8c671eba9d447d09110b14c88d99.tar.gz uGFX-6546c032504e8c671eba9d447d09110b14c88d99.tar.bz2 uGFX-6546c032504e8c671eba9d447d09110b14c88d99.zip |
TOUCHPADDriver_t -> TOUCHPADDriver | GConsole_t -> GConsole
Diffstat (limited to 'src')
-rw-r--r-- | src/console.c | 10 | ||||
-rw-r--r-- | src/touchpad.c | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/console.c b/src/console.c index 16b18114..4739c53c 100644 --- a/src/console.c +++ b/src/console.c @@ -41,7 +41,7 @@ struct GConsoleVMT { * @details This class extends @p BaseAsynchronousChannel by adding physical
* I/O queues.
*/
-typedef struct _GConsole_t {
+typedef struct _GConsole {
/** @brief Virtual Methods Table.*/
const struct GConsoleVMT *vmt;
_base_asynchronous_channel_data
@@ -60,7 +60,7 @@ typedef struct _GConsole_t { uint8_t fy;
/* font inter-character padding in pixels */
uint8_t fp;
-} GConsole_t;
+} GConsole;
/*
* Interface implementation. The interface is write only
@@ -130,7 +130,7 @@ static const struct GConsoleVMT vmt = { };
-msg_t lcdConsoleInit(GConsole_t *console, coord_t x0, coord_t y0, coord_t width, coord_t height, font_t font, pixel_t bkcolor, pixel_t color) {
+msg_t lcdConsoleInit(GConsole *console, coord_t x0, coord_t y0, coord_t width, coord_t height, font_t font, pixel_t bkcolor, pixel_t color) {
console->vmt = &vmt;
/* read font, get height & padding */
console->fy = gdispGetFontMetric(font, fontHeight);
@@ -154,7 +154,7 @@ msg_t lcdConsoleInit(GConsole_t *console, coord_t x0, coord_t y0, coord_t width, return RDY_OK;
}
-msg_t lcdConsolePut(GLCDConsole_t *console, char c) {
+msg_t lcdConsolePut(GLCDConsole *console, char c) {
uint8_t width;
if(c == '\n') {
@@ -208,7 +208,7 @@ msg_t lcdConsolePut(GLCDConsole_t *console, char c) { return RDY_OK;
}
-msg_t lcdConsoleWrite(GLCDConsole_t *console, const uint8_t *bp, size_t n) {
+msg_t lcdConsoleWrite(GLCDConsole *console, const uint8_t *bp, size_t n) {
size_t i;
for(i = 0; i < n; i++)
lcdConsolePut(console, bp[i]);
diff --git a/src/touchpad.c b/src/touchpad.c index b38283c2..0759134e 100644 --- a/src/touchpad.c +++ b/src/touchpad.c @@ -126,7 +126,7 @@ static void _tpDrawCross(uint16_t x, uint16_t y) { * * @api */ -void tpInit(const TOUCHPADDriver_t *tp) { +void tpInit(const TOUCHPADDriver *tp) { /* Initialise Mutex */ //MUTEX_INIT |