Skip to content

Commit

Permalink
feat: change byte start and end for log send
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedsonpys committed Mar 10, 2024
1 parent 2ca2f06 commit 31e7022
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/telemetry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ void Telemetry::begin() {
};

void Telemetry::sendLog(String log) {
// 0x53 as log start
Transceiver.print('\x53');
// 0x1C as log start
Transceiver.print('\x1C');
Transceiver.print(log);
// 0x45 as log end
Transceiver.print('\x45');
// 0x1B as log end
Transceiver.print('\x1B');
};

void Telemetry::send(String message) {
Expand Down

0 comments on commit 31e7022

Please sign in to comment.