X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/28f6056a1592d14ec7dfcfc7b25441a053b46727..3deacf340c59a89b862f228d251307e71a9c9189:/badge/ui/display.c diff --git a/badge/ui/display.c b/badge/ui/display.c index e1fb67b..db04007 100644 --- a/badge/ui/display.c +++ b/badge/ui/display.c @@ -6,8 +6,26 @@ #include #include +#ifdef R0KET + #include +#define CS_LOW() gpioSetValue(RB_LCD_CS , 0) +#define CS_HIGH() gpioSetValue(RB_LCD_CS , 1) +#define RST_LOW() gpioSetValue(RB_LCD_RST, 0) +#define RST_HIGH() gpioSetValue(RB_LCD_RST, 1) + +#else + +#include + +#define CS_LOW() gpioSetValue(HOB_PORT(HOB_LCD_CS ), HOB_PIN(HOB_LCD_CS ), 0) +#define CS_HIGH() gpioSetValue(HOB_PORT(HOB_LCD_CS ), HOB_PIN(HOB_LCD_CS ), 1) +#define RST_LOW() gpioSetValue(HOB_PORT(HOB_LCD_RST), HOB_PIN(HOB_LCD_RST), 0) +#define RST_HIGH() gpioSetValue(HOB_PORT(HOB_LCD_RST), HOB_PIN(HOB_LCD_RST), 1) + +#endif + #ifdef CFG_USBMSC #include @@ -27,11 +45,12 @@ static void lcd_select() { | SSP_SSP0CR0_FRF_SPI // Frame format = SPI | SSP_SSP0CR0_SCR_8); // Serial clock rate = 8 SSP_SSP0CR0 = configReg; - gpioSetValue(RB_LCD_CS, 0); + + CS_LOW(); } static void lcd_deselect() { - gpioSetValue(RB_LCD_CS, 1); + CS_HIGH(); /* reset the bus to 8-Bit frames that everyone else uses */ uint32_t configReg = ( SSP_SSP0CR0_DSS_8BIT // Data size = 8-bit | SSP_SSP0CR0_FRF_SPI // Frame format = SPI @@ -59,16 +78,13 @@ static void lcd_write_data (uint8_t data) { lcd_write(0x0100 | data); } void badge_display_init(void) { sspInit(0, sspClockPolarity_Low, sspClockPhase_RisingEdge); - gpioSetValue(RB_LCD_CS , 1); - gpioSetValue(RB_LCD_RST, 1); - - gpioSetDir (RB_LCD_CS , gpioDirection_Output); - gpioSetDir (RB_LCD_RST, gpioDirection_Output); + CS_HIGH(); + RST_HIGH(); systickDelay(100); - gpioSetValue(RB_LCD_RST, 0); + RST_LOW(); systickDelay(100); - gpioSetValue(RB_LCD_RST, 1); + RST_HIGH(); systickDelay(100); /* int id = lcdRead(220); @@ -104,8 +120,8 @@ void badge_display_init(void) { * 10: set x address (upper bits): X[6-4] = 0 */ static uint8_t const initseq[]= { 0xE2, 0xAF, // Display ON - //0xA1, // Mirror-X - 0xc8, // mirror-y + 0xA1, // Mirror-X + //0xc8, // mirror-y 0xa7, // invert (1 = black) 0xA4, 0x2F, // 0x9f, 0x24