Memory LCD#
The memory liquid crystal display (LCD) driver provides the ability to render characters or monochrome pictures onto the display of the LCD peripheral on the SiWx91x™ device.
The memory LCD interface is built to use SPI communication either with USART or EUSART.
Refer to https://docs.silabs.com/gecko-platform/3.1/hardware-driver/api/group-memlcd for more information.
Configurations for three standard display are already supported (lpm013m126a, ls013b7dh03 and ls013b7dh06), but the sl_memlcd_t structure can also be configured with a custom LCD's specifications. To implement a fully custom memory LCD interface.
Custom-Memory-LCD#
The custom memory LCD module provides a way to add support for an LCD driver
that is incompatible with existing interfaces.
To accomplish this, the following conditions must be fulfilled.
The LCD driver and the communication needs to be implemented manually. However, some APIs must be implemented and the sl_memlcd_t structure must be initialized for the GLIB library to work properly. The APIs to implement are sl_memlcd_init, sl_memlcd_power_on, sl_memlcd_draw and sl_memlcd_get and they must follow the same declaration as shown in the documentation.
In the sl_memlcd_init API, it is important to initialize a sl_memlcd_t type variable and fill in the "height" and "width" fields with the real specifications of the LCD display. This same variable must be accessible from the sl_memlcd_get API as the GLIB library will fetch the height and width of the display.
The sl_memlcd_t structure contains a "custom_data" field to store any custom structure needed for the implementation of the driver.
Modules#
Typedefs#
General memory LCD data structure.
Functions#
Enumeration to represent the ulp-timer instances.
Enables the memory LCD display.
Enables or disables the display.
Handles MEMLCD initialization after wakeup.
Clears the display.
Draws a number of rows to the memory LCD display.
Refreshes the display device.
Gets a handle to the memory LCD.
Typedef Documentation#
Function Documentation#
sl_memlcd_configure#
sl_status_t sl_memlcd_configure (struct sl_memlcd_t * device)
Enumeration to represent the ulp-timer instances.
Type | Direction | Argument Name | Description |
---|---|---|---|
struct sl_memlcd_t * | [in] | device | Memory LCD Display device pointer. |
Configures the memory LCD device.
This API configures the memory LCD device. It must be called to configure the memory LCD device before starting to use the memory LCD.
Returns
Status code of the operation:
SL_STATUS_OK (0x0000) - Success.
SL_STATUS_FAIL (0x0001) - Failure.
sl_memlcd_display_enable#
void sl_memlcd_display_enable (void )
Enables the memory LCD display.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This API enables the memory LCD display. It must be called to enable the MEMLCD display.
sl_memlcd_power_on#
sl_status_t sl_memlcd_power_on (const struct sl_memlcd_t * device, bool on)
Enables or disables the display.
Type | Direction | Argument Name | Description |
---|---|---|---|
const struct sl_memlcd_t * | [in] | device | Memory LCD Display device pointer. |
bool | [in] | on | Boolean value to enable (true) or disable (false) the display. |
This API enables or disables the display. Disabling the display does not result in data loss. Note that this API does not control the DISP pin on the display. This pin is managed by board-specific code.
Returns
Status code of the operation:
SL_STATUS_OK (0x0000) - Success.
SL_STATUS_FAIL (0x0001) - Failure.
sl_memlcd_post_wakeup_init#
sl_status_t sl_memlcd_post_wakeup_init (void )
Handles MEMLCD initialization after wakeup.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This API handles the initialization of the MEMLCD after the system wakes up from a low-power state.
Returns
Status code of the operation:
SL_STATUS_OK (0x0000) - Success.
SL_STATUS_FAIL (0x0001) - Failure.
sl_memlcd_clear#
sl_status_t sl_memlcd_clear (const struct sl_memlcd_t * device)
Clears the display.
Type | Direction | Argument Name | Description |
---|---|---|---|
const struct sl_memlcd_t * | [in] | device | Memory LCD Display device pointer. |
This API will clear the display of memory LCD. Returns
Status code of the operation.
sl_memlcd_draw#
sl_status_t sl_memlcd_draw (const struct sl_memlcd_t * device, const void * data, unsigned int row_start, unsigned int row_count)
Draws a number of rows to the memory LCD display.
Type | Direction | Argument Name | Description |
---|---|---|---|
const struct sl_memlcd_t * | [in] | device | Memory LCD Display device pointer. |
const void * | [in] | data | Pointer to the pixel matrix buffer to draw. The format of the buffer depends on the color mode of the memory LCD display. |
unsigned int | [in] | row_start | Start row on the display where to start drawing. The first row is 0. |
unsigned int | [in] | row_count | Number of rows to draw. |
This API will draw a specified number of rows to the memory LCD display. The data
parameter points to the pixel matrix buffer to draw, and its format depends on the color mode of the memory LCD display.
Returns
SL_STATUS_OK if there are no errors.
sl_memlcd_refresh#
sl_status_t sl_memlcd_refresh (const struct sl_memlcd_t * device)
Refreshes the display device.
Type | Direction | Argument Name | Description |
---|---|---|---|
const struct sl_memlcd_t * | [in] | device | Memory LCD Display device pointer. |
This API refreshes the memory LCD display. It is typically used to re-initialize the SPI clock rate after a clock configuration change.
Returns
Status code of the operation:
SL_STATUS_OK (0x0000) - Success.
SL_STATUS_FAIL (0x0001) - Failure.
sl_memlcd_get#
const sl_memlcd_t * sl_memlcd_get (void )
Gets a handle to the memory LCD.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This function returns a handle to the memory LCD structure. If no memory LCD is initialized yet, it returns NULL.
Returns
Pointer to the memory LCD structure or NULL if no memory LCD is initialized.