TDISP demo fix
This commit is contained in:
parent
5d4de9e0ee
commit
3571d18741
2 changed files with 7 additions and 7 deletions
|
@ -30,7 +30,7 @@
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
|
|
||||||
int main(void) {
|
int main(void) {
|
||||||
char charmap[8];
|
uint8_t charmap[8];
|
||||||
|
|
||||||
halInit();
|
halInit();
|
||||||
chSysInit();
|
chSysInit();
|
||||||
|
|
|
@ -108,7 +108,7 @@ void tdispSetCursor(coord_t col, coord_t row);
|
||||||
* made up of @p tdispGetCharBitWidth() bits of data. Note that bits in multiple rows are not
|
* made up of @p tdispGetCharBitWidth() bits of data. Note that bits in multiple rows are not
|
||||||
* packed.
|
* packed.
|
||||||
*/
|
*/
|
||||||
void tdispCreateChar(uint8_t address, uint8_t *charmap);
|
void tdispCreateChar(uint8_t address, char* charmap);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Draws a single character at the current cursor position and advances the cursor
|
* @brief Draws a single character at the current cursor position and advances the cursor
|
||||||
|
|
Loading…
Add table
Reference in a new issue