Yuqiang Wang 6b0671b336
[bsp][ci] fix BSPs compilation errors
1.RT_TIMER_TICK_PER_SECOND替换为RT_TICK_PER_SECOND
2.nxp lpc、imx、mcx系列bsp修复
3.lpc824支持gcc
4.lpc824、lpc1114 bsp默认使用nano版本
5.nxp scons --dist问题修复
6.rt-spark lvgl latest 编译修复
2024-10-11 18:32:58 -04:00

37 lines
1018 B
C

/*
* Copyright 2019, 2021 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef _VGLITE_SUPPORT_H_
#define _VGLITE_SUPPORT_H_
#include "fsl_common.h"
/*******************************************************************************
* Definitions
******************************************************************************/
/*******************************************************************************
* API
******************************************************************************/
#if defined(__cplusplus)
extern "C" {
#endif /* __cplusplus */
#define VG_LITE_COMMAND_BUFFER_SIZE (256 << 10) /* 256 KB */
/* Default tessellation window width and height, in pixels */
#define DEFAULT_VG_LITE_TW_WIDTH 128 /* pixels */
#define DEFAULT_VG_LITE_TW_HEIGHT 128 /* pixels */
status_t BOARD_PrepareVGLiteController(void);
#if defined(__cplusplus)
}
#endif /* __cplusplus */
#endif /* _VGLITE_SUPPORT_H_ */