mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
20 lines
401 B
C
20 lines
401 B
C
/*
|
|
* Copyright (c) 2023-2024, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _PANEL_DBI_H_
|
|
#define _PANEL_DBI_H_
|
|
|
|
#include <aic_hal_dbi.h>
|
|
|
|
#include "panel_com.h"
|
|
|
|
int panel_dbi_default_enable(struct aic_panel *panel);
|
|
|
|
int panel_dbi_commands_execute(struct aic_panel *panel,
|
|
struct panel_dbi_commands *commands);
|
|
|
|
#endif /* _PANEL_DBI_H_ */
|