Skip to content

Commit 05b1dc8

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 6288c89 + 54aafaa commit 05b1dc8

File tree

6 files changed

+1010
-3
lines changed

6 files changed

+1010
-3
lines changed

libraries/LiquidCrystal/LCD.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ void LCD::createChar(uint8_t location, uint8_t charmap[])
304304
}
305305

306306
#ifdef __AVR__
307-
void LCD::createChar(uint8_t location, const prog_uchar charmap[])
307+
void LCD::createChar(uint8_t location, const unsigned char charmap[])
308308
{
309309
location &= 0x7; // we only have 8 memory locations 0-7
310310

libraries/LiquidCrystal/LCD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ class LCD : public Print
418418
(0 to 7)
419419
@param charmap[in] the bitmap array representing each row of the character.
420420
*/
421-
void createChar(uint8_t location, const prog_uchar charmap[]);
421+
void createChar(uint8_t location, const unsigned char charmap[]);
422422
#endif // __AVR__
423423

424424
/*!

0 commit comments

Comments
 (0)