#include #include #include #include "lpc134x.h" #include "core/ssp/ssp.h" #include "gpio/gpio.h" #include "basic/basic.h" #include "basic/config.h" #include "usb/usbmsc.h" /**************************************************************************/ /* Utility routines to manage nokia display */ /**************************************************************************/ uint8_t lcdBuffer[RESX*RESY_B]; uint32_t intstatus; // Caches USB interrupt state // (need to disable MSC while displaying) #define TYPE_CMD 0 #define TYPE_DATA 1 static void lcd_select() { #if CFG_USBMSC if(usbMSCenabled){ intstatus=USB_DEVINTEN; USB_DEVINTEN=0; }; #endif /* the LCD requires 9-Bit frames */ uint32_t configReg = ( SSP_SSP0CR0_DSS_9BIT // Data size = 9-bit | SSP_SSP0CR0_FRF_SPI // Frame format = SPI | SSP_SSP0CR0_SCR_8); // Serial clock rate = 8 SSP_SSP0CR0 = configReg; gpioSetValue(RB_LCD_CS, 0); } static void lcd_deselect() { gpioSetValue(RB_LCD_CS, 1); /* 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 | SSP_SSP0CR0_SCR_8); // Serial clock rate = 8 SSP_SSP0CR0 = configReg; #if CFG_USBMSC if(usbMSCenabled){ USB_DEVINTEN=intstatus; }; #endif } static void lcdWrite(uint8_t cd, uint8_t data) { uint16_t frame = 0x0; frame = cd << 8; frame |= data; while ((SSP_SSP0SR & (SSP_SSP0SR_TNF_NOTFULL | SSP_SSP0SR_BSY_BUSY)) != SSP_SSP0SR_TNF_NOTFULL); SSP_SSP0DR = frame; while ((SSP_SSP0SR & (SSP_SSP0SR_BSY_BUSY|SSP_SSP0SR_RNE_NOTEMPTY)) != SSP_SSP0SR_RNE_NOTEMPTY); /* clear the FIFO */ frame = SSP_SSP0DR; } #define CS 2,1 #define SCK 2,11 #define SDA 0,9 #define RST 2,2 uint8_t lcdRead(uint8_t data) { uint8_t i; gpioSetDir(SDA, 1); gpioSetValue(SCK, 0); delayms(1); gpioSetValue(CS, 0); delayms(1); gpioSetValue(SDA, 0); delayms(1); gpioSetValue(SCK, 1); delayms(1); for(i=0; i<8; i++){ gpioSetValue(SCK, 0); delayms(1); if( data & 0x80 ) gpioSetValue(SDA, 1); else gpioSetValue(SDA, 0); data <<= 1; gpioSetValue(SCK, 1); delayms(1); } uint8_t ret = 0; gpioSetDir(SDA, 0); for(i=0; i<8; i++){ gpioSetValue(SCK, 0); delayms(1); ret <<= 1; ret |= gpioGetValue(SDA); gpioSetValue(SCK, 1); delayms(1); } gpioSetValue(CS, 0); gpioSetDir(SDA, 1); delayms(1); } void lcdInit(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); delayms(100); gpioSetValue(RB_LCD_RST, 0); delayms(100); gpioSetValue(RB_LCD_RST, 1); delayms(100); lcd_select(); /* Small Nokia 1200 LCD docs: * clear/ set * on 0xae / 0xaf * invert 0xa6 / 0xa7 * mirror-x 0xA0 / 0xA1 * mirror-y 0xc7 / 0xc8 * * 0x20+x contrast (0=black - 0x2e) * 0x40+x offset in rows from top (-0x7f) * 0x80+x contrast? (0=black -0x9f?) * 0xd0+x black lines from top? (-0xdf?) * */ lcdWrite(TYPE_CMD,0xE2); delayms(5); lcdWrite(TYPE_CMD,0xAF); // Display ON lcdWrite(TYPE_CMD,0xA1); // Mirror-X lcdWrite(TYPE_CMD,0xA4); lcdWrite(TYPE_CMD,0x2F); lcdWrite(TYPE_CMD,0xB0); lcdWrite(TYPE_CMD,0x10); lcdWrite(TYPE_CMD,0x00); uint16_t i; for(i=0; i<100; i++) lcdWrite(TYPE_DATA,0x00); lcd_deselect(); } void lcdFill(char f){ int x; for(x=0;x=0 && x=0 && y < RESY) lcdSetPixel(x, y, f); } void lcdSetPixel(char x, char y, bool f){ if (x<0 || x> RESX || y<0 || y > RESY) return; char y_byte = (RESY-(y+1)) / 8; char y_off = (RESY-(y+1)) % 8; char byte = lcdBuffer[y_byte*RESX+(RESX-(x+1))]; if (f) { byte |= (1 << y_off); } else { byte &= ~(1 << y_off); } lcdBuffer[y_byte*RESX+(RESX-(x+1))] = byte; } bool lcdGetPixel(char x, char y){ char y_byte = (RESY-(y+1)) / 8; char y_off = (RESY-(y+1)) % 8; char byte = lcdBuffer[y_byte*RESX+(RESX-(x+1))]; return byte & (1 << y_off); } void lcdDisplay(void) { char byte; lcd_select(); lcdWrite(TYPE_CMD,0xB0); lcdWrite(TYPE_CMD,0x10); lcdWrite(TYPE_CMD,0x00); uint16_t i,page; for(page=0; page0x9F) return; lcd_select(); lcdWrite(TYPE_CMD,c); lcd_deselect(); }; void lcdSetInvert(int c) { if(c>1) c=1; if(c<0) c=1; c+=0xa6; lcd_select(); lcdWrite(TYPE_CMD,c); lcd_deselect(); }; /* deprecated */ void __attribute__((__deprecated__)) lcdToggleFlag(int flag) { if(flag==LCD_MIRRORX) GLOBAL(lcdmirror)=!GLOBAL(lcdmirror); if(flag==LCD_INVERTED) GLOBAL(lcdinvert)=!GLOBAL(lcdinvert); } void lcdShiftH(bool right, bool wrap) { uint8_t tmp; for (int yb = 0; yb 0; y--){ lcdBuffer[x+(y*RESX)] = (lcdBuffer[x+(y*RESX)] << 1) |( lcdBuffer[x+((y-1)*RESX)] >> 7); } lcdBuffer[x] = ( lcdBuffer[x] << 1) | ((tmp[x]>>3)&1); } } else { if (wrap) memmove(tmp,lcdBuffer,RESX); else memset(tmp,0,RESX); for (int x = 0; x> 1) |( lcdBuffer[x+((y+1)*RESX)] << 7); } lcdBuffer[x+((RESY_B-1)*RESX)] = ( lcdBuffer[x+((RESY_B-1)*RESX)] >> 1) | ((tmp[x]<<3)&8); } } } void lcdShift(int x, int y, bool wrap) { bool dir=true; if(x<0){ dir=false; x=-x; }; while(x-->0) lcdShiftH(dir, wrap); if(y<0){ dir=false; y=-y; }else{ dir=true; }; while(y>=8){ y-=8; lcdShiftV8(dir, wrap); }; while(y-->0) lcdShiftV(dir, wrap); }