32 lines
532 B
C
32 lines
532 B
C
/*
|
|
* Copyright (c) 2025, LISTENAI
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file lisa_display_arcs.h
|
|
* @brief LISA Display ARCS 平台适配层头文件
|
|
*
|
|
* 该头文件暴露 ARCS 平台的私有数据结构,供 Panel 驱动使用。
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "lisa_display.h"
|
|
#include "lisa_display_panel.h"
|
|
#include <lisa_mutex.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* ARCS 平台私有定义,通常为空 */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|