printf重定向老是报错,咋整呢?

2019-07-21 00:38发布

环境:KEIL4.7 + C++
使用了正点原子的源代码,如下:
#if 1
#pragma import(__use_no_semihosting)             
              
struct __FILE
{
    int handle;

};

FILE __stdout;       
 
_sys_exit(int x)
{
    x = x;
}

int fputc(int ch, FILE *f)
{      
    while((USART1->SR&0X40)==0); 
    USART1->DR = (u8) ch;      
    return ch;
}
#endif

微库没有打开,包含文件#include <stdio.h>。但是会报错:
FILE __stdout;
此处报错:Srcsp.cpp(891): error:  #70: incomplete type is not allowed

_sys_exit(int x)
此处报错:Srcsp.cpp(893): error:  #260-D: explicit type is missing ("int" assumed)

int fputc(int ch, FILE *f)
此处报错:Srcsp.cpp(898): error:  #734: function "fputc(int, std::FILE *)" conflicts with using-declaration of function "std::fputc(int, std::FILE *) C"

采用微库方式,也会报错。
搞不懂啥原因,求指点,谢谢。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
23条回答
魂游魄幽
1楼-- · 2019-07-22 13:36
 精彩回答 2  元偷偷看……
心语心愿
2楼-- · 2019-07-22 18:33
我在_sys_exit(int x) 前面加个void好了
kidcando
3楼-- · 2019-07-23 00:14
这个不要选选择
qilanjie
4楼-- · 2019-07-23 05:04
楼上正解
lizhenzhen
5楼-- · 2019-07-23 10:37
16楼正解。可是为什么呢
q1149306406
6楼-- · 2019-07-23 11:37
 精彩回答 2  元偷偷看……

一周热门 更多>