Fix compile error

pull/46/head
Pawel Jalocha 2022-03-21 09:09:41 +00:00
rodzic 4c1eb17e9e
commit 0f3583646d
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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 );