1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-20 20:08:20 +00:00
This commit is contained in:
Tomasz Duda 2024-10-29 18:01:24 +01:00
parent 9a0f0d1fd1
commit 14050411cd

View File

@ -693,7 +693,7 @@ void get_mac_address_raw(uint8_t *mac) { // NOLINT(readability-non-const-parame
} }
#elif defined(USE_RP2040) #elif defined(USE_RP2040)
void get_mac_address_raw(uint8_t *mac) { // NOLINT(readability-non-const-parameter) void get_mac_address_raw(uint8_t *mac) { // NOLINT(readability-non-const-parameter)
#if USE_WIFI #ifdef USE_WIFI
WiFi.macAddress(mac); WiFi.macAddress(mac);
#endif #endif
} }