cleanup & tdisp warning fix

ugfx_release_2.6
Joel Bodenmann 2013-05-20 05:59:28 +02:00
parent 896e67c900
commit 4d4a78f415
3 changed files with 576 additions and 578 deletions

View File

@ -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
*/

View File

@ -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();