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
/**************************************************************************/
uint16_t lcdGetControllerID(void)
{
- return ssd1331Type();
+ return 0x1331;
}
/**************************************************************************/
}
}
-/**************************************************************************/
-/*!
- @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
/**************************************************************************/
uint16_t lcdGetControllerID(void)
{
- return ssd1351Type();
+ return 0x1351;
}
/**************************************************************************/
/*************************************************/
uint16_t lcdGetControllerID(void)
{
- // ToDo
- return 0;
+ return 0x7735;
}
/*************************************************/
st7783WriteData(data);
}
-/*************************************************/
-/* Returns the 4-hexdigit controller code */
-/*************************************************/
-uint16_t st7783Type(void)
-{
- st7783WriteCmd(0x0);
- return st7783ReadData();
-}
-
/*************************************************/
void st7783SetCursor(uint16_t x, uint16_t y)
{
/*************************************************/
uint16_t lcdGetControllerID(void)
{
- return st7783Type();
+ return 0x7783;
}
/*************************************************/