23 lines
553 B
C
23 lines
553 B
C
#ifndef _DZBJ_INIT_H_
|
||
#define _DZBJ_INIT_H_
|
||
|
||
#include <driver/i2c_master.h>
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
// dzbj 显示模块初始化入口
|
||
// i2c_bus: 主项目的 I2C 总线句柄(与音频编解码器共享)
|
||
void dzbj_display_init(i2c_master_bus_handle_t i2c_bus);
|
||
|
||
// 仅硬件+LVGL 初始化(不加载 SquareLine UI,不点亮背光)
|
||
// 用于 AI 模式:调用方自行加载 AI 专用屏幕后再点亮背光
|
||
void dzbj_hw_display_init(i2c_master_bus_handle_t i2c_bus);
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif // _DZBJ_INIT_H_
|