Batch appercase hex values
This commit is contained in:
committed by
Scott Lahteine
parent
3facf34f5f
commit
7e09160ba3
@ -461,8 +461,8 @@ static const TFTGLCD_charmap_t g_TFTGLCD_charmap_device[] PROGMEM = {
|
||||
|
||||
#ifdef CONVERT_TO_EXT_ASCII
|
||||
{IV('°'), 0x01, 0}, // 00B0, Marlin special: '°' LCD_STR_DEGREE (0x09)
|
||||
{IV('²'), 0x0e, 0}, // 0x32 if no special symbol in panel font
|
||||
{IV('³'), 0x0f, 0}, // 0x33 if no special symbol in panel font
|
||||
{IV('²'), 0x0E, 0}, // 0x32 if no special symbol in panel font
|
||||
{IV('³'), 0x0F, 0}, // 0x33 if no special symbol in panel font
|
||||
|
||||
// translate to cp866 codepage
|
||||
//first ASCII symbols in panel font must be replaced with Marlin special symbols
|
||||
|
@ -70,14 +70,14 @@ TFTGLCD lcd;
|
||||
#define ICON_BED B00010000
|
||||
#define ICON_FAN B00100000
|
||||
#define ICON_HOT B01000000 //when any T > 50deg
|
||||
#define PIC_MASK 0x7f
|
||||
#define PIC_MASK 0x7F
|
||||
|
||||
//LEDs not used, for compatibility with Smoothieware
|
||||
#define LED_HOTEND_ON B00000001
|
||||
#define LED_BED_ON B00000010
|
||||
#define LED_FAN_ON B00000100
|
||||
#define LED_HOT B00001000
|
||||
#define LED_MASK 0x0f
|
||||
#define LED_MASK 0x0F
|
||||
|
||||
#define FBSIZE (LCD_WIDTH * LCD_HEIGHT + 2)
|
||||
|
||||
|
Reference in New Issue
Block a user