4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-02 16:22:53 +08:00
YuQi 94221bbdd8
[bsp][c28x] 新增adc驱动 (#6520)
1. 在c28x文件目录上一层再套一层文件夹ti,目前28379的项目路径为rt-thread\bsp\ti\c28x\tms320f28379d
2. 新增adc驱动与kconfig配置
2022-10-15 00:56:00 -04:00

28 lines
1.0 KiB
C

/*
* Copyright (c) 2006-2022, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2019-03-27 xuzhuoyi the first version
* 2022-08-22 guyunjie remove data types other than 8bit for compatibility with libc
*/
#ifndef __RTCONFIG_PROJECT_H__
#define __RTCONFIG_PROJECT_H__
/* C28X does not support 8bit data type by hardward (char = 16bit) so
* 8bit data types are not defined in its standard libs. We define them
* here. Be careful that the 8bit is actually 16bit. */
#define UINT8_MAX 0xff /**< Maximum number of UINT8 */
typedef signed char int8_t; /**< 8bit integer type */
typedef unsigned char uint8_t; /**< 8bit unsigned integer type */
/* C28X automatically disable interrupt in interrupt service routine.
* We need to enable manually to allow for interrupt nesting by calling
* this macro at the start of preemptible interrupt service routines*/
#define ALLOW_ISR_PREEMPT() __asm(" CLRC INTM")
#endif