26 lines
465 B
C
26 lines
465 B
C
|
|
|
|
#ifndef LCD_H
|
|
#define LCD_H
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
#endif /* __cplusplus */
|
|
#include "lcd_config.h"
|
|
extern lcd_drv_cfg *tjd_lcd_get_driver_ops(void);
|
|
extern uint32_t tjd_lcd_get_ops_num(void);
|
|
extern combo_dev_cfg_t *tjd_lcd_get_bus_escape_config(void);
|
|
extern lcd_drv_cfg *tjd_lcd_get_driver_config(uint32_t id);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|