From f048bece4bd21810b6766e9ccbe3406e59062626 Mon Sep 17 00:00:00 2001 From: Martin Guy Date: Wed, 28 Sep 2011 20:29:37 +0200 Subject: [PATCH] Change LCD I2C slave addresses to 7C-7F The old slave addresses, F2, F3, F6, F7 are reserved for 10-bit I2C addressing. This changes them to values that are least likely to conflist with other devices: 7C-7F are registered to two LCD display devices. --- src/platform/avr32/lcd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/avr32/lcd.h b/src/platform/avr32/lcd.h index f5dbcea4..eb0c31c7 100644 --- a/src/platform/avr32/lcd.h +++ b/src/platform/avr32/lcd.h @@ -23,8 +23,8 @@ // Command address is followed by a dingle byte giving the command to perform // Data address is followed by multiple bytes of ASCII data to display // on the character display at the current cursor location. -#define LCD_CMD 0xF6 -#define LCD_DATA 0xF2 +#define LCD_CMD 0x7C +#define LCD_DATA 0x7E // Command bytes