Changes by last author:
Added:
Hi,
uses the same LCD mapping as genboard v3, relevant snippet from lcd.h : {{ #if LCD_MAPPING==3 #define LCD_DATA PORTC #define LCD_DATAPIN PINC #define LCD_DATADDR DDRC #define LCD_CTRL_EN PORTG #define LCD_CTRLDDR_EN DDRG #define ENABLE _BV(2) /* RS=0: instruction, RS=1: data (grey) */ #define RS _BV(1) /* direction: 0: write, 1:read (purple) */ #define DDIR _BV(0) #define LCD_CTRL_RS_RW PORTG #define LCD_CTRLDDR_RS_RW DDRG #endif // LCD_MAPPING==3 }} The keyboard is same as GenBoard (only genboard v3 have Maxim-Dallas 1-wire, which conflicts with this). |