为什么fopen无法打开我的uart?
#include <stdio.h> #include <string.h> int main () { char * msg = “hello world”; FILE * fp; fp = fopen (“/dev/uart1”, “w”); if (fp) { fprintf(fp, “%s”,msg); fclose (fp); } return 0; }
感觉应该是很简单的一个程序.而且是根据altera的文档上的程序来的.但是每次fp=0打不开uart.
我在system_lib里面设置的stdout,stdin,stderr都是jtag_uart这个没有什么影响吧? |