我是靠谱客的博主 健壮棉花糖,最近开发中收集的这篇文章主要介绍错题本1:main.c(4): error C141: syntax error near ‘u16‘, expected ‘hdata‘,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
首先主函数如下:
#include "reg52.h"
#include "uart.h"
typedef unsigned int u16;
typedef unsigned char u8;
void main()
{
UartInit();
while(1);
}
uart.h文件:
#ifndef __UART_H
#define __UART_H
typedef unsigned int u16;
typedef unsigned char u8;
void UartInit();
#endif
编译后的现象:
Rebuild started: Project: Usart1
Rebuild target 'Target 1'
compiling main.c...
main.c(4): error C141: syntax error near 'u16', expected 'hdata'
main.c(5): error C231: 'u8': redefinition
compiling uart.c...
Target not created.
Build Time Elapsed: 00:00:00
编译后出现以上问题,找了半天,把uart.h中的下面这两句放到uart.c中就没问题了,具体什么原因,还不知道。
typedef unsigned int u16;
typedef unsigned char u8;
修改后的uart.h如下:
#ifndef __UART_H
#define __UART_H
void UartInit();
#endif
最后
以上就是健壮棉花糖为你收集整理的错题本1:main.c(4): error C141: syntax error near ‘u16‘, expected ‘hdata‘的全部内容,希望文章能够帮你解决错题本1:main.c(4): error C141: syntax error near ‘u16‘, expected ‘hdata‘所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复