Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
pjalocha committed Mar 21, 2022
1 parent 4c1eb17 commit 0f35836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/sdlog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ void IGC_ID(void)
IGC_LogLine(Line, Len); }

void IGC_MAC(void)
uint64_t MAC = getUniqueID();
Len=4+6;
{ uint64_t MAC = getUniqueID();
int Len=4+6;
Len+=Format_String(Line+Len, "MAC ");
Len+=Format_Hex(Line+Len, (uint16_t)(MAC>>32)); // ESP32 48-bit ID
Len+=Format_Hex(Line+Len, (uint32_t) MAC );
Expand Down

0 comments on commit 0f35836

Please sign in to comment.