📄 0055ca00ab3b001e1c53c416dd5135c0
字号:
/*
* "Hello World" example.
*
* This example prints 'Hello from Nios II' to the STDOUT stream. It runs on
* the Nios II 'standard', 'full_featured', 'fast', and 'low_cost' example
* designs. It runs with or without the MicroC/OS-II RTOS and requires a STDOUT
* device in your system's hardware.
* The memory footprint of this hosted application is ~69 kbytes by default
* using the standard reference design.
*
* For a reduced footprint version of this template, and an explanation of how
* to reduce the memory footprint for a given application, see the
* "small_hello_world" template.
*
*/
#include <stdio.h>
#include "system.h"
#include <string.h>
int main()
{
char *msg="This is a test on UART";
char *msg1="We are going to receive msg from UART";
char buf[50];
printf("Hello from Nios II!\n");
printf("Hello Caibaiyin:)\n");
volatile int i=0;
for(i=0;i<=10;i++)
{
printf("Hello 48803961 and WangJian\n");
}
FILE *fp;
printf("We are going to open the uart!\n");
fp=fopen("/dev/uart","w");
if(fp!=NULL)
{
printf("open uart successfully!\n");
fprintf(fp,"open uart successfuly\n");
}
else
printf("open uart failed\n");
fwrite(msg, strlen(msg)+1, 1, fp);
fwrite(msg1, strlen(msg1)+1, 1, fp);
fread(buf, 31, 1,fp);
printf("we are going to write msg to standard out\n");
int j=0;
for(j=0;j<=30;j++)
{
printf("%c",buf[j]);
}
fclose(fp);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -