cleanup & tdisp warning fix
This commit is contained in:
parent
896e67c900
commit
4d4a78f415
@ -26,12 +26,10 @@
|
||||
* ChibiOS/GFX is an official add-on library for ChibiOS/RT to
|
||||
* interface all different types of LCDs and touchscreens.
|
||||
*
|
||||
* <h2>Features</h2>
|
||||
* - Modular design to reduce memory footprint
|
||||
* - HAL abstractions allows it to easily write new drivers
|
||||
* - Completely written in C, usable in C++ without any modifications
|
||||
* - Supports hardware accelerated drawing by LCDs
|
||||
* - Very flexible interfaces for calibration storage and more
|
||||
* - We are having our own homepage: http://chibios-gfx.com
|
||||
* <h2>Documentation</h2>
|
||||
* - http://chibios-gfx.com
|
||||
*
|
||||
* <h2>License</h2>
|
||||
* - http://chibios-gfx.com/license.html
|
||||
*/
|
||||
|
||||
|
1140
src/ginput/mouse.c
1140
src/ginput/mouse.c
File diff suppressed because it is too large
Load Diff
@ -72,7 +72,7 @@ void tdispSetCursor(coord_t col, coord_t row) {
|
||||
MUTEX_LEAVE();
|
||||
}
|
||||
|
||||
void tdispCreateChar(uint8_t address, uint8_t *charmap) {
|
||||
void tdispCreateChar(uint8_t address, char *charmap) {
|
||||
/* make sure we don't write somewhere we're not supposed to */
|
||||
if (address < TDISP.maxCustomChars) {
|
||||
MUTEX_ENTER();
|
||||
|
Loading…
Reference in New Issue
Block a user