F28335的<bsp_includes.h>文件内容
时间: 2024-05-04 09:19:53 浏览: 144
BSP_UART.rar_STM32f103 uart_bsp_uart_stm32 uart fifo
5星 · 资源好评率100%
`<bsp_includes.h>`文件通常是一个包含其他头文件的文件,用于方便地包含一组相关的头文件。对于F28335,它可能包含以下头文件:
```c
#ifndef BSP_INCLUDES_H_
#define BSP_INCLUDES_H_
#include "DSP2833x_Device.h" // DSP2833x Headerfile Include File
#include "DSP2833x_Examples.h" // DSP2833x Examples Include File
#include "DSP2833x_GlobalPrototypes.h" // Prototypes for global functions within the
// .c files.
#endif /* BSP_INCLUDES_H_ */
```
其中,`DSP2833x_Device.h`是DSP2833x器件的头文件,包含了器件的寄存器定义、位字段、函数原型等等;`DSP2833x_Examples.h`是一些DSP2833x例程使用的头文件;`DSP2833x_GlobalPrototypes.h`包含了一些全局函数的原型声明,用于在其他源文件中引用这些函数。这些头文件都是TI官方提供的,可以从TI官网下载。
阅读全文