Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachGarcia42 committed Apr 12, 2024
1 parent d4c39d8 commit 27588c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ int main() {
}
std::string result = repaired;
#else
std::string result = (char*)received;
std::string result = (char *)received;
#endif

#ifdef DEBUG
Expand Down Expand Up @@ -201,7 +201,9 @@ int main() {
memcpy(&rockLong, repaired + 17, 4); // Longitude field
#else
// Send data to Ground Station
for(uint i = 0; i < msglen; i++) {printf("%c", received[i]);}
for (uint i = 0; i < msglen; i++) {
printf("%c", received[i]);
}
printf("\n");

// Extract values
Expand Down

0 comments on commit 27588c6

Please sign in to comment.