Public functions of the LC display interface driver. More...
Functions | |
void | drv_LcdInterface_Initialize (void) |
Initializes the LCD interface driver. More... | |
void | drv_LcdInterface_Reset (void) |
Resets the LCD controller. More... | |
void | drv_LcdInterface_SendCmd (uint8_t cmd) |
Sends a command to the LCD controller. More... | |
Public functions of the LC display interface driver.
This is the detailed description of public API functions of the LC display interface driver.
void drv_LcdInterface_Initialize | ( | void | ) |
Initializes the LCD interface driver.
This function needs to be called once at startup before calling any other function of the LCD device driver
Definition at line 52 of file drv_lcd_interface.c.
void drv_LcdInterface_Reset | ( | void | ) |
Resets the LCD controller.
This function needs to be called once after system startup to reset the LCD controller and get into a defined state.
Definition at line 76 of file drv_lcd_interface.c.
void drv_LcdInterface_SendCmd | ( | uint8_t | data | ) |
Sends a command to the LCD controller.
Sends one character to the display controller to be displayed on the LCD screen.
This function sends a one byte long command via the initialized SPI interface to the LCD controller.
This function sends a single character via the initialized SPI interface to the LCD controller to be displayed on the LCD screen
Definition at line 92 of file drv_lcd_interface.c.