From 4b7d21af2dd8cc7b1e93e62b3fcde0601377798a Mon Sep 17 00:00:00 2001 From: asterix Date: Mon, 16 Jun 2008 17:14:02 +0000 Subject: [PATCH] Decrese value to 8bit limit. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1468 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/drv/lcd_text.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bertos/drv/lcd_text.h b/bertos/drv/lcd_text.h index d05cfcd2..4d466d02 100644 --- a/bertos/drv/lcd_text.h +++ b/bertos/drv/lcd_text.h @@ -83,7 +83,7 @@ #define LCD_NOCURSOR BV(2) /* Scrittura senza spostamento cursore */ /** Special priority value for lcd_setLayerDepth(). */ -#define LAYER_HIDDEN -128 +#define LAYER_HIDDEN -127 /* Compute LCD address from x/y coordinates */ #define LCD_POS(x,y) ((lcdpos_t)((uint8_t)(x) + (uint8_t)(y) * (uint8_t)LCD_COLS)) -- 2.25.1