打印

求助大神,不才初学单片机,碰到一UART.H头文件编译错误拦路虎

[复制链接]
1615|2
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
yunan0808|  楼主 | 2013-7-22 09:51 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
这是头文件源程序:
#ifndef __UART_H
#define __UART_H
#ifndef IN_UART
#ifdef __cplusplus
extern "C"
{
#endif
/********************************************************************************************************
** Function name: UART_Select
** Descriptions: 选择要操作的串口。(UART0--0,UART1--1)
** 选择串口后,必需调用一次UART_Init()进行初始化(只需要一次)。
** Input: no 要使用的串口
** Output: 返回上一次选用的串口
********************************************************************************************************/
extern int UART_Select(uint8 no);
/********************************************************************************************************
** Function name: UART_Init
** Descriptions: 初始化串口。设置为8位数据位,1位停止位,无奇偶校验,波特率为UART_BPS
** Input: 无
** Output: 无
********************************************************************************************************/
extern void UART_Init(void);
/********************************************************************************************************
** Function name: UART_SendByte
** Descriptions: 向串口发送字节数据,并等待发送完毕。
** Input: data 要发送的数据
** Output: 无
********************************************************************************************************/
extern void UART_SendByte(uint8 data);
/********************************************************************************************************
** Function name: UART_SendStr
** Descriptions: 向串口发送一字符串。
** 对于'\n'字符,发送时会加入'\r'字符。
** Input: str 要发送的字符串的指针
** Output: 无
********************************************************************************************************/
extern void UART_SendStr(char const *str);
/********************************************************************************************************
** Function name: UART_GetKey
** Descriptions: 从UART口读取一字节按键数据。
** 会一直等待,直到接收到1字节数据。
** Input: 无
** Output: 返回值即是读出值
********************************************************************************************************/
extern int UART_GetKey(void);
/********************************************************************************************************/
#ifdef __cplusplus
}
#endif
#endif // IN_UART
#endif // __UART_H
/*********************************************************************************************************
** End Of File
********************************************************************************************************/
编译错误:
Build target 'Target 1'
compiling HelloRobotYourTurn.c...
UART.H(15): error C141: syntax error near 'no', expected ')'
UART.H(29): error C141: syntax error near 'data', expected ')'
Target not created
沙发
z_yc| | 2013-7-22 15:20 | 只看该作者
应该是uint8未定义,把含有其定义的头文件包含进来即可。

使用特权

评论回复
板凳
yunan0808|  楼主 | 2013-7-25 16:03 | 只看该作者
是要包含#include<stdint.h>吧?这个头文件要加在程序的哪个地方?请前辈指点下!!!

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

6

主题

25

帖子

0

粉丝