X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/a7be12a4e68fcaaa92f81a394bc316a592ec6270..1ab16aec62e20065faba56c469ddf75830860162:/drivers/displays/tft/hw/ssd1331.c?ds=sidebyside diff --git a/drivers/displays/tft/hw/ssd1331.c b/drivers/displays/tft/hw/ssd1331.c index a934ba2..11d983a 100644 --- a/drivers/displays/tft/hw/ssd1331.c +++ b/drivers/displays/tft/hw/ssd1331.c @@ -43,7 +43,7 @@ #include "core/systick/systick.h" static volatile lcdOrientation_t lcdOrientation = LCD_ORIENTATION_PORTRAIT; -static lcdProperties_t ssd1331Properties = { 96, 64, false, false, false }; +static lcdProperties_t ssd1331Properties = { 96, 64, false, false, false, true, true }; /*************************************************/ /* Private Methods */ @@ -87,38 +87,6 @@ void ssd1331SendByte(uint8_t byte) } } -/**************************************************************************/ -/*! - @brief Reads a 16-bit value from the 8-bit data bus -*/ -/**************************************************************************/ -uint16_t ssd1331ReadData(void) -{ - // ToDo - return 0; -} - -/**************************************************************************/ -/*! - @brief Reads a 16-bit value -*/ -/**************************************************************************/ -uint16_t ssd1331Read(uint16_t addr) -{ - // ToDo - return 0; -} - -/**************************************************************************/ -/*! - @brief Returns the 16-bit (4-hexdigit) controller code -*/ -/**************************************************************************/ -uint16_t ssd1331Type(void) -{ - return 0x1331; -} - /**************************************************************************/ /*! @brief Sets the cursor to the specified X/Y position @@ -145,7 +113,7 @@ void ssd1331SetCursor(uint8_t x, uint8_t y) /**************************************************************************/ void ssd1331DrawLine(uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, uint16_t color) { - uint16_t x, pixels; + uint16_t x; if ((x1 >= ssd1331Properties.width) || (x2 >= ssd1331Properties.width) || (y1 >= ssd1331Properties.height) || (y2 >= ssd1331Properties.height)) { @@ -466,7 +434,7 @@ void lcdScroll(int16_t pixels, uint16_t fillColor) /**************************************************************************/ uint16_t lcdGetControllerID(void) { - return ssd1331Type(); + return 0x1331; } /**************************************************************************/