Fixed typos
[hackover2013-badge-firmware.git] / drivers / displays / tft / hw / ssd1351.c
index bd9e6ac..2c293e4 100644 (file)
@@ -103,16 +103,6 @@ void ssd1351SendByte(uint8_t byte, uint8_t command)
   }
 }
 
-/**************************************************************************/
-/*! 
-    @brief  Returns the 16-bit (4-hexdigit) controller code
-*/
-/**************************************************************************/
-uint16_t ssd1351Type(void)
-{
-  return 0x1351;
-}
-
 /**************************************************************************/
 /*! 
     @brief  Sets the cursor to the specified X/Y position
@@ -279,7 +269,7 @@ void lcdInit(void)
   //  DATA(0xBF);
 
   // Clear screen
-  lcdFillRGB(COLOR_RED);
+  lcdFillRGB(COLOR_BLACK);
 
   // Turn the display on
   CMD(SSD1351_CMD_SLEEPMODE_DISPLAYON);  
@@ -458,7 +448,7 @@ void lcdScroll(int16_t pixels, uint16_t fillColor)
 /**************************************************************************/
 uint16_t lcdGetControllerID(void)
 {
-  return ssd1351Type();
+  return 0x1351;
 }
 
 /**************************************************************************/
This page took 0.023213 seconds and 4 git commands to generate.