入门请教——Keil uvison2 单片机C语言怎么看打印结果
时间:10-02
整理:3721RD
点击:
1 我点击New project,新建了一个工程,保存为test.uv2。
2 选择Ateml公司的AT89C51单片机
3 File -New在文本窗口输入C语言简单打印程序
#include<AT89X51.H>
#include<stdio.h>
main()
{
printf("My first Text! \n"); //显示 My first Text
}
而后保存为test1.c
在Source Group文件夹图标上右击弹出菜单,选Add File to Group Source Group ,选择刚保存的文静,按ADD添加。
最后,对程序进行调试,可是,那个什么串行调试窗口怎么没有My first Text 打印出来。
请问如何看到C语言的打印结果?谢谢。
2 选择Ateml公司的AT89C51单片机
3 File -New在文本窗口输入C语言简单打印程序
#include<AT89X51.H>
#include<stdio.h>
main()
{
printf("My first Text! \n"); //显示 My first Text
}
而后保存为test1.c
在Source Group文件夹图标上右击弹出菜单,选Add File to Group Source Group ,选择刚保存的文静,按ADD添加。
最后,对程序进行调试,可是,那个什么串行调试窗口怎么没有My first Text 打印出来。
请问如何看到C语言的打印结果?谢谢。
同样的问题,为什么没有人解答呢!
建议你还是多余看看教程吧...谢谢
同样的问题,我也遇到了
keil中printf是通过串口发送数据
好东西。谢谢