George Ruinelli 3 лет назад
Родитель
Сommit
ec4ce66bcc
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      code/components/jomjol_helper/Helper.cpp

+ 2 - 2
code/components/jomjol_helper/Helper.cpp

@@ -725,8 +725,8 @@ string RundeOutput(double _in, int _anzNachkomma)
 
 
 string getMac(void) {
-    uint8_t *macInt;
-    char macFormated[6*2 + 5 + 1];
+    uint8_t macInt[6];
+    char macFormated[6*2 + 5 + 1]; // AA:BB:CC:DD:EE:FF
 
     esp_read_mac(macInt, ESP_MAC_WIFI_STA);
     sprintf(macFormated, "%02X:%02X:%02X:%02X:%02X:%02X", macInt[0], macInt[1], macInt[2], macInt[3], macInt[4], macInt[5]);