Updated with option to return from BP screen to main screen, resolved screen navigation issues
Dependencies: SDFileSystem TFTLCD_8bit ds3231 program mbed
Fork of poc_dis_5 by
Diff: ecgg.cpp
- Revision:
- 4:6bd81bb1790d
- Parent:
- 3:9a06c2bed650
--- a/ecgg.cpp Fri Feb 10 10:39:13 2017 +0000 +++ b/ecgg.cpp Wed Mar 01 18:49:33 2017 +0000 @@ -25,23 +25,21 @@ Timer t; unsigned char chk = 1; pc.baud(baud_rate); - freqset(); - setupfunc(); + freqset(); // setting the frequency + setupfunc(); ecgsetupfunc(); chk = 1; - // t.start(); - sd_open_ECGfile(pid); + sd_open_ECGfile(pid); // opening the ecg file for(int i=0; i<N_ECG; i++) { concatenate_value2= readvalue(); - sd_write(concatenate_value2); + sd_write(concatenate_value2); // writing into the sd card pc.printf( "%d\n", concatenate_value2); } - sd_close(); - // t.stop(); - // printf( "%f\n", t.read()); + sd_close(); // closing the file + } // End of main function