LPC2468 writing a file with fopen

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

LPC2468 writing a file with fopen

392 次查看
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by sns22 on Fri Apr 10 02:36:21 MST 2015
Hi all,

I am working with LPC2468 board from embeddedartists using the IAR Embedded Workbench 7.3

I want to write my results read from a double variable into a txt file created on the PC. I read on the forums and already set the library settings to FULL to read the Dlib_Config files.
           #include nxp/iolpc2468.h
           #include stdio.h
           #include string.h
      
           FILE* file;
           file = fopen("H:\\test.txt","rw+");
           fprintf(file,"%A\n",max_temperature_DegC);
           fclose(file); 

I used this standard code. Although I have no compiler warning/errors. But when I debug; the code it gets stuck in the undefined handler (abort handler) as I can see it in the disassembly. The output file is not created and has no output. I am not using UART or any I2C to write to the file.

Is it possible to write to a file on a PC directly or one has to use UART/I2C ??

Thanks
标签 (1)
0 项奖励
回复
0 回复数