print correctly

pico-v0.1
alanbjohnston 4 years ago committed by GitHub
parent 864d92b717
commit db80f73292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2034,8 +2034,9 @@ void start_payload() {
Serial.println(" ");
float f;
EEPROM.get(0, f);
Serial.println((int)f, HEX);
long la;
EEPROM.get(0, la);
Serial.println(la, HEX);
EEPROM.get(4, f);
Serial.println(f);
EEPROM.get(8, f);

Loading…
Cancel
Save

Powered by TurnKey Linux.