I reached another part of my program where I have the following statement which prints out these values on screen.
printf(" %d %d %d %d %d %d %d(%.1foC) %d %d(%s) %d(%.2f) %d(%s) %d\n",
year, month, day, hour, minutes, evtStart, temperature, tempDegC, checksum, basicSelfTest, bstResult, batteryVolt, (float)(batteryVolt*0.0198), powerUpCode, statusCode, timeElapsed);
I was wondering what would be the best way to show these values in notepad?
Thank you in advance!