Post Go back to editing

Missing The Mark for Ending of a Measurement Loop

Category: Hardware
Product Number: emStat pico

Hello

I try to control emstat pico module with stm32 processor. When I check the capturing data, I recognized that there is no '*\n" command in the recording data. Do you what it can be reason for that?

Here is the recorded data, "e\nM0007\nPda8061B74u;ba8030F9Dn,12,28\n", '\0' <repeats 62 times>

Parents Reply
  • Thank you for your suggestions! It looks like the 'hibernate' is an easy option. Is the correct notation to use hibernate like that?

    char const * Chrono_Amp =
    						  "e\n"
    						  "var p\n"
    						  "var c\n"
    						  "hibernate 0x03i 60\n"
    						  "set_pgstat_mode 2\n"
    						  "cell_on\n"
    						  // A DC potential of 100 mV (EdcChro) is applied. The current is measured every 100 ms (tintervalChro) for
    						  // a total of 2 seconds (trunChro). This results in a total of 20 data points at a rate of 10 points per second.
    						  "meas_loop_ca p c -300m 2 10\n"
    		    			  "pck_start\n"
    		                  "pck_add p\n"
    		                  "pck_add c\n"
    		                  "pck_end\n"
    		                  "endloop\n"
    		                  "on_finished:\n"
    		                  "cell_off\n"
    						  "\n";

Children