2) 第二步。添加它的头文件,也就是 stdio.h,接下来的设置我们有两个方 法:
1. 第一个方法是:打开 KEIL 的 Target Options,选择里面的 Target 位置 选择 Use MicroLIB。然后编译就可以了。
2. 第二个方法的呢,再添加一下代码
#pragma import(__use_no_semihosting)
/* 标准库需要的支持函数 */
struct __FILE
{
int handle;
/* Whatever you require here. If the only file you are using is */
/* standard output using printf() for debugging, no file handling */
/* is required. */
};
/* FILE is typedef’ d in stdio.h. */
FILE __stdout;
/* 定义_sys_exit()以避免使用半主机模式 */
_sys_exit(int x)
{
x = x;
}
然 后编译,就可以使用了 。