• how to save data into file in keil IDE
    hi I want to save my intermediate data into a file. I tried to use fopen, fwrite, it can not even read. how should i use rtl.h ? int count[10]; FILE *fout; fout = fopen ("Counter.bin","w");...
  • how to save data into file in keil IDE
    hi I want to save my intermediate data into a file. I tried to use fopen, fwrite, it can not even read. how should i use rtl.h ? int count[10]; FILE *fout; fout = fopen ("Counter.bin","w");...
  • Use ITM, How is the input char saved into ITM_RxBuffer?
    I'm learning for the code in \Keil\ARM\Examples\Measure, I can input/output debug information though ITM and Debug(printf) Viewer normally. When I review the source code, I found a input char is saved...
  • Use ITM, How is the input char saved into ITM_RxBuffer?
    I'm learning for the code in \Keil\ARM\Examples\Measure, I can input/output debug information though ITM and Debug(printf) Viewer normally. When I review the source code, I found a input char is saved...
  • Reading a memory location into a C varaible
    Hi, I need to read a memory location (SRAM)and load the value into a variable of type integer in my 'C' code. How do I achieve the above mentioned problem in C? Do I need to do some kind of translations...