Files
luban-lite-t3e-pro/packages/artinchip/lvgl-ui/lv_driver/lv_tpc_run.h

32 lines
469 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
* Copyright (c) 2022-2023, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*
*/
#ifndef LV_TPC_RUN
#define LV_TPC_RUN
#ifdef __cplusplus
extern "C" {
#endif
2023-11-09 20:19:51 +08:00
#include <rtconfig.h>
#ifdef KERNEL_RTTHREAD
2023-08-30 16:21:18 +08:00
#include <rtthread.h>
#include <rtdevice.h>
int tpc_run(const char *name, rt_uint16_t x, rt_uint16_t y);
2024-09-03 11:16:08 +08:00
void lvgl_get_tp(void);
void lvgl_put_tp(void);
2023-11-09 20:19:51 +08:00
#endif
2023-08-30 16:21:18 +08:00
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* LV_TPC_RUN */