jvoermans / Vibration_Logger

Logger to measure sea ice vibrations
3 stars 1 forks source link

add sonar to the Due #36

Open jerabaul29 opened 3 years ago

jerabaul29 commented 3 years ago

@jerabaul29 add the sonar to the Due logging.

jvoermans commented 3 years ago

@jerabaul29

This is what I have so far for the mega (copied only the relevant parts). It is probably inefficient, but on a barebone mega works perfectly fine. The Ping gives a 'highest confidence distance' and provides confidence as well. I've noticed that 80% confidence is reasonable as long as there are sufficient observations at that interval.

// Sonar ping

include "ping1d.h"

static const uint8_t arduinoRxPin = 17; //Serial1 rx (white) static const uint8_t arduinoTxPin = 16; //Serial1 tx (green) static Ping1D ping { Serial2 }; int count_sonar = 0; //define sonar counter int Sonar; //if Sonar is present int S1; //sonar: distance int S2; //sonar: confidence level long S80_ave = 0L; long S90_ave = 0L; long S100_ave = 0L; int S80_count = 0; int S90_count = 0; int S100_count = 0; int Distance; //Distance measurement

void setup() {

//set Sonar Serial2.begin(9600); ping.set_speed_of_sound(1500000); if (ping.initialize() == true) { Sonar = 1; } else { Sonar = 0; } }

void loop() {

  if (Sonar == 1) {
    while (count_sonar < 10) { //count_sonar can't be too big, or GPS will do difficult
      if (ping.update()) {
        S1 = ping.distance();
        S2 = ping.confidence();

        //Print confidence and distance
        Serial.print(S1);Serial.print(" ");Serial.println(S2);

        //Consider only data with confidence level of 80 and higher
        if (S2 >= 80 && S2 < 90) {
          S80_ave = S80_ave + S1;
          S80_count++;
        }
        if (S2 >= 90 && S2 < 100) {
          S90_ave = S90_ave + S1;
          S90_count++;
        }
        if (S2 == 100) {
          S100_ave = S100_ave + S1;
          S100_count++;
        }
      }
      count_sonar++;
    }
  }
  count_sonar = 0;
  count++;

//Take highest confidence interval possible if (S100_count > 30) { Distance = S100_ave / S100_count; Serial.print("C100 ");Serial.println(S100_count); } else if (S90_count > 30) { Distance = S90_ave / S90_count; Serial.print("C90 ");Serial.println(S90_count); } else if (S80_count > 30) { Distance = S80_ave / S80_count; Serial.print("C80 ");Serial.println(S80_count); } else { Distance = 0; }

}

jerabaul29 commented 3 years ago

@jvoermans I added the ping module as a git submodule, so after pulling the repo, next time, you will need to do a git submodule update --init --recursive or something like this to pull it.

jerabaul29 commented 3 years ago

Still working on adding it, may take a day or two.

jerabaul29 commented 3 years ago

@jvoermans I am trying to understand a bit more about the sonar. Basically what it does is:

The distance measurements probably just finds the maximum echo. There is a lot more information available actually, by looking at the full echoes profile, as done here:

https://github.com/bluerobotics/ping-arduino/blob/c45b02fda4200513457a23ffd92cb2364e834fc3/examples/ping1d-advanced/ping1d-advanced.ino#L89-L98

So I am thinking on the "fast" logger about logging not just the distance, but the full echo profile.

It is a bit challenging to write code when I do not have the device, so there may be a bit of trial and error, but we should manage :) .

jerabaul29 commented 3 years ago

Mmmh, I get plenty of compilation errors on their library. @jvoermans in which context were you able to use their library / how did you install it etc?

jvoermans commented 3 years ago

Just installed it through the Arduino IDE. Not sure how fast it updates. Profile is interesting, but not sure if that is feasible?

I haven't checked much else, stressed in getting the instruments ready for Antarctica. All is needed is initialize, update, then read the data of interest....

jerabaul29 commented 3 years ago

@jvoermans , I added the sonar, not just the range, but the full profile should be logged.

I do not have the sonar home, so if you can test and let me know if it works / send me a few logging files, would be great :) .

Good luck with getting the shipping ready!

jerabaul29 commented 3 years ago

PS: the sonar should be put on Serial2.

jvoermans commented 3 years ago

@jerabaul29 I tested the sonar on the Due but it is not logging. They are connected to pins 16 and 17. This is what the serial shows (after which it hangs):

FastLogger enable serial debug new filename F00000067.bin Start temperature sensors get temperature calibration values start new measurement ADC dump 41 0 0 0 C3 7E 9B 0 77 4B 9

There is a 50kb file produced full of zeros.

If I swap the TX and RX pins it just says something like sonar not found (so suggests I guess that the pins are correctly connected). I haven't attached anything else (put the T-probes to 0).

I also tried with clockspeed of 10K instead of the 50K but works the same.

I think it all compiles just fine. Only get some warnings regarding temperature probes...

Any idea where it might go wrong? (I understand that is near impossible to figure out without having the sonar yourself...)

jerabaul29 commented 3 years ago

Mmmh, ok. You had never seen this kind of problems before, right? Will look at it today / tonight.

jerabaul29 commented 3 years ago

Can you try with 1 T probe?

jerabaul29 commented 3 years ago

Ok, I think I may have fixed the problem; can you check / confirm if things work now? :)

jvoermans commented 3 years ago

Similar problem occurs when cable is very long and put serial monitor on with older sketch with 3 temperature probes. It works when serial monitor is not on, but when its on it stops after first calculation of the averages.

jvoermans commented 3 years ago

That was quick! Im not in the lab anymore. I'll check first thing in the morning! :)

jerabaul29 commented 3 years ago

Mmmh, ok, there may be some debugging to do then, and not only with this, looks like the problems were from before this update, right?

jerabaul29 commented 3 years ago

Yes, I found at least 1 thing that is not good, fixed it now, will see if that fixes the problem...

jvoermans commented 3 years ago

@jerabaul29 Still same, it doesn't say there is no Sonar connected, just hangs almost immediately (same as above).

jerabaul29 commented 3 years ago

Mmh, are you sure you use the latest version?

Will look at it more tomorrow.

jvoermans commented 3 years ago

I'll double check, but I think so.

Get slightly more printed when adding 1 T probe:

FastLogger enable serial debug new filename F00000011.bin Start temperature sensors get temperature calibration values start new measurement ADC dump 41 0 0 0 8B DE 9D 0 3F AB A1 0 0 0 B0 A 75 8 45 7 41 0 1 0 8B DE 9D 0 3F AB A1 0 0 0 59

jerabaul29 commented 3 years ago

Can you try again now with the latest code and show the debug information here? :)

jvoermans commented 3 years ago

I did "git reset --hard" (I know it is risky, but haven't made any changes myself).

Reuploaded and I get:

FastLogger enable serial debug new filename F00000000.bin file already exists new filename F00000001.bin file already exists new filename F00000002.bin file already exists new filename F00000003.bin file already exists new filename F00000004.bin file already exists new filename F00000005.bin file already exists new filename F00000006.bin file already exists new filename F00000007.bin file already exists new filename F00000008.bin file already exists new filename F00000009.bin file already exists new filename F00000010.bin file already exists new filename F00000011.bin file already exists new filename F00000012.bin file already exists new filename F00000013.bin file already exists new filename F00000014.bin Start temperature sensors get temperature calibration values start new measurement ADC dump 41 0 0 0 5D EC BA 0 11 B9 BE 0 0

I set T probes to 0...

jerabaul29 commented 3 years ago

Did you do a git pull?

jerabaul29 commented 3 years ago

(what does git status say?)

jvoermans commented 3 years ago

Hold on, suddenly 'git pull' gives some changes, not sure why:

jvoermans@4320L-142139-W MINGW64 ~/OneDrive - The University of Melbourne/Documents/Github/Vibration_Logger (master) $ git pull Already up to date.

jvoermans@4320L-142139-W MINGW64 ~/OneDrive - The University of Melbourne/Documents/Github/Vibration_Logger (master) $ git reset --hard HEAD is now at 567ebb3 Fix formatting issue and out of range in temperature measurements

jvoermans@4320L-142139-W MINGW64 ~/OneDrive - The University of Melbourne/Documents/Github/Vibration_Logger (master) $ git pull remote: Enumerating objects: 17, done. remote: Counting objects: 100% (17/17), done. remote: Compressing objects: 100% (1/1), done. remote: Total 9 (delta 8), reused 9 (delta 8), pack-reused 0 Unpacking objects: 100% (9/9), 896 bytes | 2.00 KiB/s, done. From https://github.com/jvoermans/Vibration_Logger 567ebb3..58e9269 master -> origin/master Updating 567ebb3..58e9269 Fast-forward .../src/GPS_manager.cpp | 2 ++ .../Due_SD_high_frequency_logger/src/GPS_manager.h | 2 +- .../src/SonarManager.cpp | 5 +++++ .../Due_SD_high_frequency_logger/src/main.cpp | 21 +++++++++++++++++++++ 4 files changed, 29 insertions(+), 1 deletion(-)

jvoermans@4320L-142139-W MINGW64 ~/OneDrive - The University of Melbourne/Documents/Github/Vibration_Logger (master)

jerabaul29 commented 3 years ago

Ok, you were probably trying with the non updated code :) .

jerabaul29 commented 3 years ago

We will see if this fixes things or not....

jvoermans commented 3 years ago

Same unfortunately,:

new filename F00000014.bin file already exists new filename F00000015.bin Start temperature sensors get temperature calibration values start new measurement ADC dump 41 0 0 0 36 F0 BC 0 E7 BC C

Then it hangs. Try slower clockspeed?

jerabaul29 commented 3 years ago

Mmh, ok. Can you git pull again, and try again?

jerabaul29 commented 3 years ago

I do not think clock speeds have something to do with the problems.

jvoermans commented 3 years ago

It says already up to date

jerabaul29 commented 3 years ago

Ok. I just pushed something, can you try again?

jvoermans commented 3 years ago

Ok, its finding changes, hold on...

jerabaul29 commented 3 years ago

Sometimes you may need to issue git pull twice in a row looks like. Weird.

Can you post the full terminal? :) .

jvoermans commented 3 years ago

Executing task in folder Due_SD_high_frequency_logger: C:\Users\jvoermans.platformio\penv\Scripts\pio.exe device monitor <

--- Available filters and text transformations: colorize, debug, default, direct, hexlify, log2file, nocontrol, printable, send_on_enter, time --- More details at http://bit.ly/pio-monitor-filters --- Miniterm on COM28 115200,8,N,1 --- --- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---

FastLogger enable serial debug new filename F00000000.bin file already exists new filename F00000001.bin file already exists new filename F00000002.bin file already exists new filename F00000003.bin file already exists new filename F00000004.bin file already exists new filename F00000005.bin file already exists new filename F00000006.bin file already exists new filename F00000007.bin file already exists new filename F00000008.bin file already exists new filename F00000009.bin file already exists new filename F00000010.bin file already exists new filename F00000011.bin file already exists new filename F00000012.bin file already exists new filename F00000013.bin file already exists new filename F00000014.bin file already exists new filename F00000015.bin file already exists new filename F00000016.bin file already exists new filename F00000017.bin Start temperature sensors get temperature calibration values start new measurement sonar started ADC dump 41 0 0 0 A6

jerabaul29 commented 3 years ago

Mmmmh, ok, strange.

I wonder if I introduced a bug a bit of time ago, and the commit in question was never tested, which means that the bug is older.

jerabaul29 commented 3 years ago

Can you:

jerabaul29 commented 3 years ago

And then can you again do the same but git checkout 387b1ab3c

jerabaul29 commented 3 years ago

And then can you again do the same but git checkout 4371899ea

jvoermans commented 3 years ago

Sure, including the sonar I assume? Don't feel obliged to stay up, I understand its late in Europe

jerabaul29 commented 3 years ago

And then can you again do the same but git checkout 656cd69ad

jerabaul29 commented 3 years ago

You can remove the sonar for each of these tests :)

jerabaul29 commented 3 years ago

Can you just post each result with 1) indicating which commit you work from 2) showing the terminal debug? :)

jerabaul29 commented 3 years ago

I give it 10 more minutes and then go to sleep ^^ . Not easy to collaborate with 12 hrs time difference.

jvoermans commented 3 years ago

On it. What about T probes?

jerabaul29 commented 3 years ago

You can have 1 of them.

jerabaul29 commented 3 years ago

I go to sleep, but will look at the results you post tomorrow :) .

jvoermans commented 3 years ago

Checkout: 452b329 (Note, only 1 T probe, but kept it at 4 in 'parameters.h'). I kept files 1-11 on the SD card.

FastLogger enable serial debug
new filename F00000000.bin
file already exists
Start temperature sensors
get temperature calibration values
start new measurement
$PMTK001,314,3*36
$PMTK001,220,3*30
$PMTK001,300,3*33
6
$PMTK001,220,3*30
$PMupdate temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 3C 2F 9E 0 E3 FB A1 0 0 0 B8 A 6C 8 2D 7
problem writing block
41 0 1 0 3C 2F 9E 0 E3 FB A1 0 0 0 58 A A6 7 73 6
problem writing block
41 0 2 0 3C 2F 9E 0 E3 FB A1 0 0 0 38 A A9 7 90 6
problem writing block
41 0 3 0 3C 2F 9E 0 E3 FB A1 0 0 0 83 9 4D 7 69 6
problem writing block
41 0 4 0 3C 2F 9E 0 E3 FB A1 0 24 8 8F 7 9 7 98 6
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
$GPRMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 CB FF A1 0 72 CC A5 0 37 5 36 5 36 5 37 5
problem writing block
41 0 1 0 CB FF A1 0 72 CC A5 0 15 5 13 5 14 5 14 5
problem writing block
41 0 2 0 CB FF A1 0 72 CC A5 0 37 5 37 5 37 5 38 5
problem writing block
41 0 3 0 CB FF A1 0 72 CC A5 0 11 5 10 5 11 5 10 5
problem writing block
41 0 4 0 CB FF A1 0 72 CC A5 0 33 5 33 5 34 5 33 5
problem writing block
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 5A D0 A5 0 3 9D A9 0 2D 5 2E 5 2D 5 2D 5
problem writing block
41 0 1 0 5A D0 A5 0 3 9D A9 0 D 5 C 5 C 5 C 5
problem writing block
41 0 2 0 5A D0 A5 0 3 9D A9 0 2F 5 2E 5 2F 5 2E 5
problem writing block
41 0 3 0 5A D0 A5 0 3 9D A9 0 9 5 A 5 9 5 9 5
problem writing block
41 0 4 0 5A D0 A5 0 3 9D A9 0 2A 5 29 5 2A 5 2A 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.7
chars dump
43 0 0 0 0 0 0 0 A9 35 AC 0 4D 30 31 30 34 38 34 32
problem writing block
start new measurement
ADC dump
41 0 0 0 EB A0 A9 0 92 6D AD 0 2A 5 2A 5 2B 5 2A 5
problem writing block
41 0 1 0 EB A0 A9 0 92 6D AD 0 A 5 A 5 A 5 9 5
problem writing block
41 0 2 0 EB A0 A9 0 92 6D AD 0 2C 5 2C 5 2D 5 2C 5
problem writing block
41 0 3 0 EB A0 A9 0 92 6D AD 0 7 5 7 5 6 5 8 5
problem writing block
41 0 4 0 EB A0 A9 0 92 6D AD 0 29 5 26 5 27 5 27 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 7A 71 AD 0 24 3E B1 0 28 5 28 5 27 5 27 5
problem writing block
41 0 1 0 7A 71 AD 0 24 3E B1 0 8 5 7 5 9 5 8 5
problem writing block
41 0 2 0 7A 71 AD 0 24 3E B1 0 2A 5 2A 5 2A 5 2B 5
problem writing block
41 0 3 0 7A 71 AD 0 24 3E B1 0 6 5 5 5 4 5 5 5
problem writing block
41 0 4 0 7A 71 AD 0 24 3E B1 0 26 5 26 5 24 5 24 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
$GPRMC,000000.800,V,,,,,0.00,0.00,060180,,,N*4A
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 9 42 B1 0 B3 E B5 0 27 5 27 5 28 5 28 5
problem writing block
41 0 1 0 9 42 B1 0 B3 E B5 0 8 5 7 5 7 5 7 5
problem writing block
41 0 2 0 9 42 B1 0 B3 E B5 0 2A 5 29 5 2A 5 29 5
problem writing block
41 0 3 0 9 42 B1 0 B3 E B5 0 5 5 4 5 4 5 4 5
problem writing block
41 0 4 0 9 42 B1 0 B3 E B5 0 24 5 25 5 25 5 25 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 9B 12 B5 0 42 DF B8 0 26 5 26 5 25 5 25 5
problem writing block
41 0 1 0 9B 12 B5 0 42 DF B8 0 6 5 5 5 5 5 7 5
problem writing block
41 0 2 0 9B 12 B5 0 42 DF B8 0 29 5 29 5 29 5 28 5
problem writing block
41 0 3 0 9B 12 B5 0 42 DF B8 0 4 5 3 5 3 5 3 5
problem writing block
41 0 4 0 9B 12 B5 0 42 DF B8 0 23 5 22 5 23 5 22 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 2A E3 B8 0 D3 AF BC 0 27 5 25 5 26 5 26 5
problem writing block
41 0 1 0 2A E3 B8 0 D3 AF BC 0 5 5 7 5 5 5 6 5
problem writing block
41 0 2 0 2A E3 B8 0 D3 AF BC 0 28 5 28 5 28 5 28 5
problem writing block
41 0 3 0 2A E3 B8 0 D3 AF BC 0 4 5 3 5 3 5 3 5
problem writing block
41 0 4 0 2A E3 B8 0 D3 AF BC 0 24 5 23 5 22 5 24 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
chars dump
43 0 1 0 A9 35 AC 0 8B FE BC 0 31 36 2E 37 3B 4D 30 31
problem writing block
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 BB B3 BC 0 62 80 C0 0 26 5 26 5 25 5 25 5
problem writing block
41 0 1 0 BB B3 BC 0 62 80 C0 0 6 5 4 5 4 5 5 5
problem writing block
41 0 2 0 BB B3 BC 0 62 80 C0 0 26 5 28 5 28 5 27 5
problem writing block
41 0 3 0 BB B3 BC 0 62 80 C0 0 2 5 3 5 3 5 2 5
problem writing block
41 0 4 0 BB B3 BC 0 62 80 C0 0 24 5 22 5 23 5 23 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
$GPRMC,000001.800,V,,,,,0.00,0.00,060180,,,N*4B
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 4A 84 C0 0 F4 50 C4 0 26 5 26 5 25 5 25 5
problem writing block
41 0 1 0 4A 84 C0 0 F4 50 C4 0 5 5 5 5 6 5 4 5
problem writing block
41 0 2 0 4A 84 C0 0 F4 50 C4 0 27 5 29 5 27 5 27 5
problem writing block
41 0 3 0 4A 84 C0 0 F4 50 C4 0 3 5 3 5 3 5 3 5
problem writing block
41 0 4 0 4A 84 C0 0 F4 50 C4 0 21 5 22 5 23 5 22 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 D9 54 C4 0 83 21 C8 0 25 5 25 5 24 5 25 5
problem writing block
41 0 1 0 D9 54 C4 0 83 21 C8 0 5 5 3 5 4 5 4 5
problem writing block
41 0 2 0 D9 54 C4 0 83 21 C8 0 27 5 28 5 27 5 26 5
problem writing block
41 0 3 0 D9 54 C4 0 83 21 C8 0 2 5 2 5 2 5 2 5
problem writing block
41 0 4 0 D9 54 C4 0 83 21 C8 0 22 5 21 5 21 5 20 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 6B 25 C8 0 12 F2 CB 0 25 5 27 5 26 5 26 5
problem writing block
41 0 1 0 6B 25 C8 0 12 F2 CB 0 4 5 5 5 5 5 5 5
problem writing block
41 0 2 0 6B 25 C8 0 12 F2 CB 0 26 5 28 5 28 5 28 5
problem writing block
41 0 3 0 6B 25 C8 0 12 F2 CB 0 3 5 3 5 3 5 1 5
problem writing block
41 0 4 0 6B 25 C8 0 12 F2 CB 0 21 5 22 5 22 5 22 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
chars dump
43 0 0 0 8B FE BC 0 67 C7 CD 0 35 31 36 2E 37 3B 4D 30
problem writing block
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 FA F5 CB 0 A3 C2 CF 0 24 5 24 5 24 5 23 5
problem writing block
41 0 1 0 FA F5 CB 0 A3 C2 CF 0 5 5 4 5 5 5 3 5
problem writing block
41 0 2 0 FA F5 CB 0 A3 C2 CF 0 27 5 26 5 26 5 25 5
problem writing block
41 0 3 0 FA F5 CB 0 A3 C2 CF 0 3 5 3 5 2 5 2 5
problem writing block
41 0 4 0 FA F5 CB 0 A3 C2 CF 0 21 5 22 5 21 5 21 5
problem writing block
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
$GPRMC,000002.800,V,,,,,0.00,0.00,060180,,,N*48
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 8B C6 CF 0 32 93 D3 0 25 5 24 5 25 5 25 5
problem writing block
41 0 1 0 8B C6 CF 0 32 93 D3 0 4 5 6 5 4 5 4 5
problem writing block
41 0 2 0 8B C6 CF 0 32 93 D3 0 26 5 27 5 27 5 27 5
problem writing block
41 0 3 0 8B C6 CF 0 32 93 D3 0 2 5 2 5 2 5 2 5
problem writing block
41 0 4 0 8B C6 CF 0 32 93 D3 0 21 5 22 5 21 5 22 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 1A 97 D3 0 C4 63 D7 0 25 5 24 5 25 5 25 5
problem writing block
41 0 1 0 1A 97 D3 0 C4 63 D7 0 3 5 4 5 5 5 3 5
problem writing block
41 0 2 0 1A 97 D3 0 C4 63 D7 0 27 5 26 5 26 5 27 5
problem writing block
41 0 3 0 1A 97 D3 0 C4 63 D7 0 3 5 2 5 2 5 1 5
problem writing block
41 0 4 0 1A 97 D3 0 C4 63 D7 0 21 5 20 5 20 5 20 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 A9 67 D7 0 53 34 DB 0 24 5 24 5 24 5 25 5
problem writing block
41 0 1 0 A9 67 D7 0 53 34 DB 0 3 5 4 5 4 5 4 5
problem writing block
41 0 2 0 A9 67 D7 0 53 34 DB 0 26 5 26 5 27 5 26 5
problem writing block
41 0 3 0 A9 67 D7 0 53 34 DB 0 3 5 3 5 0 5 2 5
problem writing block
41 0 4 0 A9 67 D7 0 53 34 DB 0 21 5 20 5 21 5 21 5
problem writing block
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
chars dump
43 0 1 0 67 C7 CD 0 46 90 DE 0 2D 35 31 36 2E 37 3B 4D
problem writing block
start new measurement
ADC dump
41 0 0 0 3B 38 DB 0 E2 4 DF 0 25 5 24 5 24 5 25 5
problem writing block
41 0 1 0 3B 38 DB 0 E2 4 DF 0 4 5 4 5 4 5 4 5
problem writing block
41 0 2 0 3B 38 DB 0 E2 4 DF 0 27 5 28 5 26 5 25 5
problem writing block
41 0 3 0 3B 38 DB 0 E2 4 DF 0 3 5 3 5 2 5 1 5
problem writing block
41 0 4 0 3B 38 DB 0 E2 4 DF 0 21 5 20 5 22 5 21 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
$GPRMC,000003.800,V,,,,,0.00,0.00,060180,,,N*49
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 CA 8 DF 0 73 D5 E2 0 23 5 25 5 25 5 25 5
problem writing block
41 0 1 0 CA 8 DF 0 73 D5 E2 0 4 5 4 5 3 5 4 5
problem writing block
41 0 2 0 CA 8 DF 0 73 D5 E2 0 25 5 25 5 27 5 26 5
problem writing block
41 0 3 0 CA 8 DF 0 73 D5 E2 0 1 5 3 5 0 5 2 5
problem writing block
41 0 4 0 CA 8 DF 0 73 D5 E2 0 20 5 21 5 21 5 21 5
problem writing block
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
need new file
close crrt file
cannot close file
new filename F00000001.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000002.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000003.bin
file already exists
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 5B D9 E2 0 3 A6 E6 0 24 5 25 5 24 5 25 5
problem writing block
41 0 1 0 5B D9 E2 0 3 A6 E6 0 3 5 4 5 4 5 3 5
problem writing block
41 0 2 0 5B D9 E2 0 3 A6 E6 0 26 5 25 5 25 5 26 5
problem writing block
41 0 3 0 5B D9 E2 0 3 A6 E6 0 2 5 1 5 0 5 1 5
problem writing block
41 0 4 0 5B D9 E2 0 3 A6 E6 0 22 5 20 5 22 5 20 5
problem writing block
need new file
close crrt file
cannot close file
new filename F00000004.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000005.bin
file already exists
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
need new file
close crrt file
cannot close file
new filename F00000006.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000007.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000008.bin
file already exists
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
need new file
close crrt file
cannot close file
new filename F00000009.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000010.bin
file already exists
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 EA A9 E6 0 94 76 EA 0 25 5 24 5 24 5 25 5
problem writing block
41 0 1 0 EA A9 E6 0 94 76 EA 0 4 5 4 5 3 5 3 5
problem writing block
41 0 2 0 EA A9 E6 0 94 76 EA 0 26 5 26 5 26 5 25 5
problem writing block
41 0 3 0 EA A9 E6 0 94 76 EA 0 2 5 1 5 2 5 3 5
problem writing block
41 0 4 0 EA A9 E6 0 94 76 EA 0 21 5 21 5 21 5 20 5
problem writing block
need new file
close crrt file
cannot close file
new filename F00000011.bin
file already exists
need new file
close crrt file
cannot close file
new filename F00000012.bin
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 79 7A EA 0 23 47 EE 0 26 5 25 5 23 5 24 5
41 0 1 0 79 7A EA 0 23 47 EE 0 4 5 5 5 6 5 5 5
41 0 2 0 79 7A EA 0 23 47 EE 0 26 5 26 5 26 5 26 5
41 0 3 0 79 7A EA 0 23 47 EE 0 3 5 3 5 2 5 2 5
41 0 4 0 79 7A EA 0 23 47 EE 0 20 5 21 5 22 5 21 5
update temperature message
TMP,27.74,-516.7-516.7-516.7
chars dump
43 0 0 0 46 90 DE 0 26 59 EF 0 37 2D 35 31 36 2E 37 3B
start new measurement
$GPRMC,000004.800,V,,,,,0.00,0.00,060180,,,N*4E
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 B 4B EE 0 B2 17 F2 0 25 5 1B 5 1F 5 21 5
41 0 1 0 B 4B EE 0 B2 17 F2 0 4 5 F9 4 FE 4 FF 4
41 0 2 0 B 4B EE 0 B2 17 F2 0 26 5 1E 5 23 5 23 5
41 0 3 0 B 4B EE 0 B2 17 F2 0 2 5 F7 4 FE 4 FF 4
41 0 4 0 B 4B EE 0 B2 17 F2 0 16 5 1B 5 1D 5 1E 5
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 9A 1B F2 0 44 E8 F5 0 24 5 24 5 24 5 25 5
41 0 1 0 9A 1B F2 0 44 E8 F5 0 5 5 4 5 6 5 2 5
41 0 2 0 9A 1B F2 0 44 E8 F5 0 27 5 26 5 27 5 26 5
41 0 3 0 9A 1B F2 0 44 E8 F5 0 2 5 1 5 1 5 FF 4
41 0 4 0 9A 1B F2 0 44 E8 F5 0 21 5 20 5 1F 5 1E 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 2B EC F5 0 D3 B8 F9 0 23 5 25 5 22 5 23 5
41 0 1 0 2B EC F5 0 D3 B8 F9 0 3 5 6 5 4 5 3 5
41 0 2 0 2B EC F5 0 D3 B8 F9 0 26 5 27 5 25 5 25 5
41 0 3 0 2B EC F5 0 D3 B8 F9 0 1 5 1 5 3 5 1 5
41 0 4 0 2B EC F5 0 D3 B8 F9 0 1F 5 22 5 20 5 21 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 BA BC F9 0 64 89 FD 0 26 5 24 5 25 5 24 5
41 0 1 0 BA BC F9 0 64 89 FD 0 3 5 5 5 3 5 3 5
41 0 2 0 BA BC F9 0 64 89 FD 0 27 5 27 5 25 5 25 5
41 0 3 0 BA BC F9 0 64 89 FD 0 1 5 2 5 2 5 1 5
41 0 4 0 BA BC F9 0 64 89 FD 0 21 5 22 5 20 5 21 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
$GPRMC,000005.800,V,,,,,0.00,0.00,060180,,,N*4F
chars dump
43 0 1 0 26 59 EF 0 84 BC FE 0 2E 37 2D 35 31 36 2E 37
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 49 8D FD 0 F3 59 1 1 24 5 27 5 24 5 24 5
41 0 1 0 49 8D FD 0 F3 59 1 1 3 5 3 5 2 5 3 5
41 0 2 0 49 8D FD 0 F3 59 1 1 24 5 27 5 25 5 27 5
41 0 3 0 49 8D FD 0 F3 59 1 1 2 5 1 5 5 5 3 5
41 0 4 0 49 8D FD 0 F3 59 1 1 1F 5 20 5 20 5 20 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 DB 5D 1 1 82 2A 5 1 24 5 26 5 23 5 25 5
41 0 1 0 DB 5D 1 1 82 2A 5 1 4 5 4 5 4 5 4 5
41 0 2 0 DB 5D 1 1 82 2A 5 1 27 5 27 5 27 5 26 5
41 0 3 0 DB 5D 1 1 82 2A 5 1 2 5 1 5 2 5 2 5
41 0 4 0 DB 5D 1 1 82 2A 5 1 22 5 21 5 21 5 20 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 6A 2E 5 1 14 FB 8 1 24 5 24 5 22 5 25 5
41 0 1 0 6A 2E 5 1 14 FB 8 1 4 5 4 5 3 5 3 5
41 0 2 0 6A 2E 5 1 14 FB 8 1 26 5 26 5 25 5 24 5
41 0 3 0 6A 2E 5 1 14 FB 8 1 2 5 1 5 3 5 2 5
41 0 4 0 6A 2E 5 1 14 FB 8 1 20 5 1F 5 20 5 20 5
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 FB FE 8 1 A3 CB C 1 25 5 25 5 23 5 24 5
41 0 1 0 FB FE 8 1 A3 CB C 1 4 5 5 5 4 5 3 5
41 0 2 0 FB FE 8 1 A3 CB C 1 26 5 27 5 24 5 25 5
41 0 3 0 FB FE 8 1 A3 CB C 1 2 5 2 5 3 5 2 5
41 0 4 0 FB FE 8 1 A3 CB C 1 21 5 20 5 1F 5 21 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
$GPRMC,000006.800,V,,,,,0.00,0.00,060180,,,N*4C
update temperature message
TMP,27.75,-516.7-516.7-516.7
chars dump
43 0 0 0 84 BC FE 0 31 64 F 1 2C 2C 2C 2C 2C 30 2E 30
start new measurement
ADC dump
41 0 0 0 8A CF C 1 34 9C 10 1 24 5 24 5 21 5 23 5
41 0 1 0 8A CF C 1 34 9C 10 1 4 5 2 5 3 5 4 5
41 0 2 0 8A CF C 1 34 9C 10 1 25 5 27 5 25 5 25 5
41 0 3 0 8A CF C 1 34 9C 10 1 1 5 1 5 0 5 1 5
41 0 4 0 8A CF C 1 34 9C 10 1 1F 5 20 5 20 5 1E 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 1A A0 10 1 C3 6C 14 1 25 5 25 5 24 5 24 5
41 0 1 0 1A A0 10 1 C3 6C 14 1 4 5 4 5 4 5 5 5
41 0 2 0 1A A0 10 1 C3 6C 14 1 27 5 27 5 27 5 26 5
41 0 3 0 1A A0 10 1 C3 6C 14 1 2 5 2 5 4 5 1 5
41 0 4 0 1A A0 10 1 C3 6C 14 1 20 5 22 5 20 5 21 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 AB 70 14 1 52 3D 18 1 24 5 25 5 25 5 24 5
41 0 1 0 AB 70 14 1 52 3D 18 1 3 5 4 5 2 5 3 5
41 0 2 0 AB 70 14 1 52 3D 18 1 25 5 27 5 24 5 25 5
41 0 3 0 AB 70 14 1 52 3D 18 1 1 5 1 5 2 5 1 5
41 0 4 0 AB 70 14 1 52 3D 18 1 1F 5 20 5 1F 5 1F 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 3A 41 18 1 E4 D 1C 1 25 5 25 5 24 5 24 5
41 0 1 0 3A 41 18 1 E4 D 1C 1 4 5 4 5 4 5 5 5
41 0 2 0 3A 41 18 1 E4 D 1C 1 26 5 28 5 25 5 25 5
41 0 3 0 3A 41 18 1 E4 D 1C 1 4 5 2 5 3 5 1 5
41 0 4 0 3A 41 18 1 E4 D 1C 1 20 5 22 5 20 5 21 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
$GPRMC,000007.800,V,,,,,0.00,0.00,060180,,,N*4D
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 CB 11 1C 1 73 DE 1F 1 24 5 24 5 24 5 26 5
41 0 1 0 CB 11 1C 1 73 DE 1F 1 3 5 3 5 2 5 3 5
41 0 2 0 CB 11 1C 1 73 DE 1F 1 26 5 25 5 25 5 25 5
41 0 3 0 CB 11 1C 1 73 DE 1F 1 2 5 1 5 0 5 0 5
41 0 4 0 CB 11 1C 1 73 DE 1F 1 21 5 1F 5 1E 5 21 5
update temperature message
TMP,27.76,-516.7-516.7-516.7
chars dump
43 0 1 0 31 64 F 1 13 2D 20 1 32 32 3B 54 4D 50 2C 32
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 5B E2 1F 1 4 AF 23 1 25 5 25 5 22 5 24 5
41 0 1 0 5B E2 1F 1 4 AF 23 1 4 5 5 5 4 5 4 5
41 0 2 0 5B E2 1F 1 4 AF 23 1 27 5 27 5 26 5 25 5
41 0 3 0 5B E2 1F 1 4 AF 23 1 2 5 2 5 3 5 2 5
41 0 4 0 5B E2 1F 1 4 AF 23 1 21 5 23 5 20 5 20 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 EA B2 23 1 93 7F 27 1 23 5 24 5 22 5 22 5
41 0 1 0 EA B2 23 1 93 7F 27 1 2 5 4 5 4 5 3 5
41 0 2 0 EA B2 23 1 93 7F 27 1 25 5 26 5 26 5 25 5
41 0 3 0 EA B2 23 1 93 7F 27 1 2 5 1 5 3 5 0 5
41 0 4 0 EA B2 23 1 93 7F 27 1 1F 5 21 5 1F 5 1F 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.76,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 7B 83 27 1 22 50 2B 1 25 5 25 5 23 5 25 5
41 0 1 0 7B 83 27 1 22 50 2B 1 4 5 4 5 5 5 3 5
41 0 2 0 7B 83 27 1 22 50 2B 1 27 5 27 5 26 5 28 5
41 0 3 0 7B 83 27 1 22 50 2B 1 2 5 2 5 2 5 2 5
41 0 4 0 7B 83 27 1 22 50 2B 1 21 5 21 5 21 5 20 5
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
$GPRMC,000008.800,V,,,,,0.00,0.00,060180,,,N*42
update temperature message
TMP,27.76,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 A 54 2B 1 B4 20 2F 1 24 5 24 5 23 5 22 5
41 0 1 0 A 54 2B 1 B4 20 2F 1 3 5 4 5 3 5 3 5
41 0 2 0 A 54 2B 1 B4 20 2F 1 25 5 25 5 24 5 26 5
41 0 3 0 A 54 2B 1 B4 20 2F 1 2 5 0 5 4 5 1 5
41 0 4 0 A 54 2B 1 B4 20 2F 1 1F 5 21 5 1E 5 1F 5
update temperature message
TMP,27.76,-516.7-516.7-516.7
start new measurement
update temperature message
TMP,27.76,-516.7-516.7-516.7
chars dump
43 0 0 0 13 2D 20 1 EF F5 30 1 38 32 35 3B 54 4D 50 2C
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.7
start new measurement
ADC dump
41 0 0 0 9C 24 2F 1 43 F1 32 1 24 5 26 5 25 5 24 5
41 0 1 0 9C 24 2F 1 43 F1 32 1 4 5 6 5 3 5 3 5
41 0 2 0 9C 24 2F 1 43 F1 32 1 27 5 27 5 26 5 27 5
41 0 3 0 9C 24 2F 1 43 F1 32 1 2 5 1 5 6 5 3 5
41 0 4 0 9C 24 2F 1 43 F1 32 1 21 5 22 5 1F 5 20 5
update temperature message
TMP,27.76,-516.7-516.7-516.7
start new measurement
jvoermans commented 3 years ago

Checkout: 387b1ab (starting from empty SD card)

FastLogger enable serial debug
new filename F00000000.bin
Start temperature sensors
get temperature calibration values
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
$PMTK001,314,3*36
$PMTK001,220,3*30
ADC dump,300,3*33
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

PMTK001,314,3*36
$PMTK001,220,3*30
ADC dump,300,3*33
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,9498.9-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
$GPRMC,000000.800,V,,,,,0.00,0.00,060180,,,N*4A
chars dump
43 0 0 0 0 0 0 0 B4 BF AB 0 4D 30 31 30 35 31 35 35
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.1-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
$GPRMC,000001.800,V,,,,,0.00,0.00,060180,,,N*4B
chars dump
43 0 1 0 B4 BF AB 0 89 EC BA 0 2C 2C 4E 2A 34 41 D A
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.3-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
update temperature message
TMP,3017.4-572.1-572.1-981.21,
start new measurement
ADC dump
41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
41 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ADC dump
jvoermans commented 3 years ago

Checkout 4371899 (Starting from empty SD Card)

FastLogger enable serial debug
new filename F00000000.bin
Start temperature sensors
get temperature calibration values
start new measurement
        b��bbbjb���ISj
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK001,314,3*36
ISj
$GPGSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK00$PMTK001,220,3*30
GSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK00$PMTK001,300,3*33
GSA,A,1,,,,,,,,,,,,,,,*1E
$GPRMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK00chars dump
43 0 0 0 0 0 0 0 27 94 A1 0 4D 30 31 30 35 33 36 34
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 5E 82 9E 0 F 4F A2 0 0 0 CC A 76 8 32 7
41 0 1 0 5E 82 9E 0 F 4F A2 0 0 0 74 A AF 7 77 6
41 0 2 0 5E 82 9E 0 F 4F A2 0 0 0 5A A BA 7 9A 6
41 0 3 0 5E 82 9E 0 F 4F A2 0 B9 9 6B 7 7A 6 5 6
41 0 4 0 5E 82 9E 0 F 4F A2 0 72 8 B9 7 21 7 A8 6
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 F7 52 A2 0 9F 1F A6 0 37 5 1F 5 3E 5 38 5
41 0 1 0 F7 52 A2 0 9F 1F A6 0 13 5 5 5 16 5 12 5
41 0 2 0 F7 52 A2 0 9F 1F A6 0 39 5 24 5 3E 5 3B 5
41 0 3 0 F7 52 A2 0 9F 1F A6 0 FD 4 1D 5 16 5 FE 4
41 0 4 0 F7 52 A2 0 9F 1F A6 0 12 5 48 5 41 5 13 5
update temperature message
TMP,-457.6-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 87 23 A6 0 30 F0 A9 0 2A 5 2B 5 2A 5 28 5
41 0 1 0 87 23 A6 0 30 F0 A9 0 8 5 9 5 8 5 7 5
41 0 2 0 87 23 A6 0 30 F0 A9 0 2D 5 2D 5 2E 5 2D 5
41 0 3 0 87 23 A6 0 30 F0 A9 0 D 5 A 5 A 5 A 5
41 0 4 0 87 23 A6 0 30 F0 A9 0 2C 5 2B 5 2B 5 2B 5
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 18 F4 A9 0 BF C0 AD 0 2C 5 14 5 32 5 2D 5
41 0 1 0 18 F4 A9 0 BF C0 AD 0 9 5 FC 4 D 5 9 5
41 0 2 0 18 F4 A9 0 BF C0 AD 0 30 5 1A 5 34 5 31 5
41 0 3 0 18 F4 A9 0 BF C0 AD 0 F3 4 14 5 E 5 F4 4
41 0 4 0 18 F4 A9 0 BF C0 AD 0 7 5 3D 5 35 5 9 5
$GPRMC,000000.800,V,,,,,0.00,0.00,060180,,,N*4A
RMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK00chars dump
43 0 1 0 27 94 A1 0 68 44 AE 0 A 47 53 41 2C 41 2C 31
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,-453.8-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 A7 C4 AD 0 50 91 B1 0 25 5 26 5 25 5 24 5
41 0 1 0 A7 C4 AD 0 50 91 B1 0 3 5 5 5 5 5 3 5
41 0 2 0 A7 C4 AD 0 50 91 B1 0 29 5 2B 5 28 5 29 5
41 0 3 0 A7 C4 AD 0 50 91 B1 0 9 5 8 5 5 5 5 5
41 0 4 0 A7 C4 AD 0 50 91 B1 0 26 5 25 5 27 5 27 5
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 36 95 B1 0 DF 61 B5 0 29 5 11 5 2E 5 2B 5
41 0 1 0 36 95 B1 0 DF 61 B5 0 7 5 F9 4 8 5 7 5
41 0 2 0 36 95 B1 0 DF 61 B5 0 2E 5 17 5 31 5 2D 5
41 0 3 0 36 95 B1 0 DF 61 B5 0 F0 4 10 5 C 5 F2 4
41 0 4 0 36 95 B1 0 DF 61 B5 0 4 5 39 5 31 5 5 5
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,-452.9-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 C8 65 B5 0 6E 32 B9 0 23 5 25 5 24 5 23 5
41 0 1 0 C8 65 B5 0 6E 32 B9 0 2 5 4 5 4 5 1 5
41 0 2 0 C8 65 B5 0 6E 32 B9 0 27 5 28 5 27 5 26 5
41 0 3 0 C8 65 B5 0 6E 32 B9 0 5 5 4 5 4 5 3 5
41 0 4 0 C8 65 B5 0 6E 32 B9 0 27 5 23 5 25 5 24 5
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
chars dump
43 0 0 0 68 44 AE 0 39 51 BC 0 30 30 2C 30 36 30 31 38
start new measurement
ADC dump
41 0 0 0 57 36 B9 0 0 3 BD 0 27 5 10 5 2D 5 29 5
41 0 1 0 57 36 B9 0 0 3 BD 0 5 5 F8 4 9 5 5 5
41 0 2 0 57 36 B9 0 0 3 BD 0 2C 5 16 5 30 5 2D 5
41 0 3 0 57 36 B9 0 0 3 BD 0 F1 4 10 5 B 5 F1 4
41 0 4 0 57 36 B9 0 0 3 BD 0 3 5 37 5 31 5 5 5
$GPRMC,000001.800,V,,,,,0.00,0.00,060180,,,N*4B
RMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK00update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 E8 6 BD 0 8F D3 C0 0 22 5 23 5 22 5 21 5
41 0 1 0 E8 6 BD 0 8F D3 C0 0 1 5 2 5 1 5 0 5
41 0 2 0 E8 6 BD 0 8F D3 C0 0 26 5 27 5 27 5 25 5
41 0 3 0 E8 6 BD 0 8F D3 C0 0 4 5 4 5 3 5 3 5
41 0 4 0 E8 6 BD 0 8F D3 C0 0 27 5 23 5 23 5 24 5
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,-450.7-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 77 D7 C0 0 20 A4 C4 0 28 5 F 5 2D 5 28 5
41 0 1 0 77 D7 C0 0 20 A4 C4 0 5 5 F8 4 9 5 5 5
41 0 2 0 77 D7 C0 0 20 A4 C4 0 2B 5 15 5 30 5 2C 5
41 0 3 0 77 D7 C0 0 20 A4 C4 0 EF 4 10 5 A 5 F0 4
41 0 4 0 77 D7 C0 0 20 A4 C4 0 3 5 38 5 30 5 3 5
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
chars dump
43 0 1 0 39 51 BC 0 46 86 C8 0 50 2C 32 37 2E 37 34 2C
start new measurement
ADC dump
41 0 0 0 6 A8 C4 0 B0 74 C8 0 21 5 22 5 22 5 20 5
41 0 1 0 6 A8 C4 0 B0 74 C8 0 2 5 1 5 2 5 FF 4
41 0 2 0 6 A8 C4 0 B0 74 C8 0 26 5 26 5 25 5 24 5
41 0 3 0 6 A8 C4 0 B0 74 C8 0 3 5 4 5 3 5 4 5
41 0 4 0 6 A8 C4 0 B0 74 C8 0 26 5 24 5 23 5 25 5
update temperature message
TMP,27.76,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 98 78 C8 0 3F 45 CC 0 26 5 F 5 2B 5 28 5
41 0 1 0 98 78 C8 0 3F 45 CC 0 4 5 F7 4 7 5 4 5
41 0 2 0 98 78 C8 0 3F 45 CC 0 2A 5 16 5 30 5 2C 5
41 0 3 0 98 78 C8 0 3F 45 CC 0 EF 4 F 5 A 5 F1 4
41 0 4 0 98 78 C8 0 3F 45 CC 0 2 5 37 5 30 5 3 5
$GPRMC,000002.800,V,,,,,0.00,0.00,060180,,,N*48
RMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
$GPVTG,0.00,T,,M,0.00,N,0.00,K,N*32
$PMTK00update temperature message
TMP,-449.4-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.75,-516.7-516.7-516.78,
start new measurement
update temperature message
jvoermans commented 3 years ago

Checkout: 656cd69 (again starting with a fresh SD card)

FastLogger enable serial debug
new filename F00000000.bin
Start temperature sensors
get temperature calibration values
start new measurement
$PMTK001,314,3*36
$PMTK001,220,3*30
$PMTK001,300,3*33
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 EB 7A 9E 0 9D 47 A2 0 0 0 C0 A 6C 8 29 7
41 0 1 0 EB 7A 9E 0 9D 47 A2 0 0 0 64 A A3 7 6D 6
41 0 2 0 EB 7A 9E 0 9D 47 A2 0 0 0 3B A A6 7 8C 6
41 0 3 0 EB 7A 9E 0 9D 47 A2 0 8C 9 50 7 68 6 F7 5
41 0 4 0 EB 7A 9E 0 9D 47 A2 0 25 8 8E 7 6 7 93 6
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
$GPRMC,235959.800,V,,,,,0.00,0.00,050180,,,N*48
0,3*33
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 6D 4B A2 0 2C 18 A6 0 37 5 20 5 3D 5 38 5
41 0 1 0 6D 4B A2 0 2C 18 A6 0 11 5 4 5 15 5 12 5
41 0 2 0 6D 4B A2 0 2C 18 A6 0 38 5 21 5 3D 5 38 5
41 0 3 0 6D 4B A2 0 2C 18 A6 0 FA 4 19 5 13 5 FA 4
41 0 4 0 6D 4B A2 0 2C 18 A6 0 C 5 42 5 3B 5 E 5
update temperature message
TMP,-464.9-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 14 1C A6 0 BD E8 A9 0 2A 5 2B 5 2A 5 29 5
41 0 1 0 14 1C A6 0 BD E8 A9 0 7 5 9 5 8 5 6 5
41 0 2 0 14 1C A6 0 BD E8 A9 0 2A 5 2D 5 2C 5 2B 5
41 0 3 0 14 1C A6 0 BD E8 A9 0 9 5 7 5 5 5 6 5
41 0 4 0 14 1C A6 0 BD E8 A9 0 26 5 25 5 24 5 25 5
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 A5 EC A9 0 4C B9 AD 0 2B 5 14 5 31 5 2D 5
41 0 1 0 A5 EC A9 0 4C B9 AD 0 9 5 FC 4 C 5 8 5
41 0 2 0 A5 EC A9 0 4C B9 AD 0 2D 5 18 5 32 5 2D 5
41 0 3 0 A5 EC A9 0 4C B9 AD 0 F0 4 11 5 B 5 F1 4
41 0 4 0 A5 EC A9 0 4C B9 AD 0 1 5 36 5 2E 5 2 5
update temperature message
TMP,27.73,-516.7-516.7-516.78,
chars dump
43 0 0 0 0 0 0 0 22 8E AE 0 4D 30 31 30 35 33 34 35
start new measurement
update temperature message
TMP,-463.8-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 34 BD AD 0 DE 89 B1 0 24 5 26 5 26 5 24 5
41 0 1 0 34 BD AD 0 DE 89 B1 0 3 5 4 5 4 5 2 5
41 0 2 0 34 BD AD 0 DE 89 B1 0 27 5 27 5 26 5 25 5
41 0 3 0 34 BD AD 0 DE 89 B1 0 4 5 4 5 1 5 3 5
41 0 4 0 34 BD AD 0 DE 89 B1 0 21 5 22 5 1E 5 21 5
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
$GPRMC,000000.800,V,,,,,0.00,0.00,060180,,,N*4A
0,3*33
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 C3 8D B1 0 6D 5A B5 0 29 5 13 5 2F 5 2A 5
41 0 1 0 C3 8D B1 0 6D 5A B5 0 6 5 F9 4 9 5 6 5
41 0 2 0 C3 8D B1 0 6D 5A B5 0 2C 5 17 5 31 5 2C 5
41 0 3 0 C3 8D B1 0 6D 5A B5 0 EE 4 E 5 9 5 EE 4
41 0 4 0 C3 8D B1 0 6D 5A B5 0 FE 4 34 5 2A 5 FF 4
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 55 5E B5 0 FC 2A B9 0 23 5 24 5 23 5 22 5
41 0 1 0 55 5E B5 0 FC 2A B9 0 3 5 3 5 2 5 0 5
41 0 2 0 55 5E B5 0 FC 2A B9 0 25 5 26 5 24 5 24 5
41 0 3 0 55 5E B5 0 FC 2A B9 0 2 5 2 5 2 5 2 5
41 0 4 0 55 5E B5 0 FC 2A B9 0 1F 5 1F 5 1E 5 1E 5
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 E4 2E B9 0 8D FB BC 0 28 5 F 5 2E 5 28 5
41 0 1 0 E4 2E B9 0 8D FB BC 0 5 5 F8 4 8 5 5 5
41 0 2 0 E4 2E B9 0 8D FB BC 0 2B 5 15 5 2F 5 2B 5
41 0 3 0 E4 2E B9 0 8D FB BC 0 ED 4 E 5 7 5 EE 4
41 0 4 0 E4 2E B9 0 8D FB BC 0 FD 4 32 5 2B 5 FE 4
update temperature message
TMP,27.74,-516.7-516.7-516.78,
chars dump
43 0 1 0 22 8E AE 0 6B D0 BD 0 36 38 3B 54 4D 50 2C 32
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 75 FF BC 0 1C CC C0 0 22 5 23 5 23 5 22 5
41 0 1 0 75 FF BC 0 1C CC C0 0 2 5 2 5 1 5 0 5
41 0 2 0 75 FF BC 0 1C CC C0 0 25 5 26 5 24 5 24 5
41 0 3 0 75 FF BC 0 1C CC C0 0 2 5 2 5 1 5 1 5
41 0 4 0 75 FF BC 0 1C CC C0 0 20 5 1E 5 1E 5 1E 5
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
$GPRMC,000001.800,V,,,,,0.00,0.00,060180,,,N*4B
0,3*33
update temperature message
TMP,-457.7-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 4 D0 C0 0 AE 9C C4 0 27 5 11 5 2E 5 29 5
41 0 1 0 4 D0 C0 0 AE 9C C4 0 5 5 F9 4 7 5 5 5
41 0 2 0 4 D0 C0 0 AE 9C C4 0 29 5 14 5 2E 5 2B 5
41 0 3 0 4 D0 C0 0 AE 9C C4 0 EE 4 E 5 7 5 ED 4
41 0 4 0 4 D0 C0 0 AE 9C C4 0 FD 4 32 5 2A 5 FE 4
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.73,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 93 A0 C4 0 3D 6D C8 0 22 5 22 5 21 5 21 5
41 0 1 0 93 A0 C4 0 3D 6D C8 0 1 5 1 5 1 5 0 5
41 0 2 0 93 A0 C4 0 3D 6D C8 0 25 5 25 5 24 5 22 5
41 0 3 0 93 A0 C4 0 3D 6D C8 0 2 5 2 5 0 5 FE 4
41 0 4 0 93 A0 C4 0 3D 6D C8 0 1E 5 1D 5 1E 5 1D 5
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 25 71 C8 0 CC 3D CC 0 28 5 F 5 2E 5 28 5
41 0 1 0 25 71 C8 0 CC 3D CC 0 4 5 F7 4 8 5 4 5
41 0 2 0 25 71 C8 0 CC 3D CC 0 2A 5 14 5 2E 5 2A 5
41 0 3 0 25 71 C8 0 CC 3D CC 0 EC 4 C 5 7 5 ED 4
41 0 4 0 25 71 C8 0 CC 3D CC 0 FC 4 32 5 2A 5 FD 4
update temperature message
TMP,-459.4-516.7-516.7-516.78,
chars dump
43 0 0 0 6B D0 BD 0 B5 12 CD 0 34 2C 2D 35 31 36 2E 37
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 B4 41 CC 0 5D E D0 0 21 5 23 5 23 5 21 5
41 0 1 0 B4 41 CC 0 5D E D0 0 1 5 1 5 1 5 0 5
41 0 2 0 B4 41 CC 0 5D E D0 0 25 5 24 5 26 5 23 5
41 0 3 0 B4 41 CC 0 5D E D0 0 1 5 1 5 2 5 1 5
41 0 4 0 B4 41 CC 0 5D E D0 0 1F 5 1E 5 1D 5 1E 5
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
$GPRMC,000002.800,V,,,,,0.00,0.00,060180,,,N*48
0,3*33
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
ADC dump
41 0 0 0 45 12 D0 0 EC DE D3 0 26 5 10 5 2C 5 28 5
41 0 1 0 45 12 D0 0 EC DE D3 0 4 5 F8 4 8 5 4 5
41 0 2 0 45 12 D0 0 EC DE D3 0 29 5 13 5 2F 5 2A 5
41 0 3 0 45 12 D0 0 EC DE D3 0 ED 4 C 5 7 5 ED 4
41 0 4 0 45 12 D0 0 EC DE D3 0 FC 4 31 5 2A 5 FC 4
update temperature message
TMP,27.74,-516.7-516.7-516.78,
start new measurement
update temperature message
TMP,-459.0-516.7-516.7-516.78,
start new measurement