Updated submodules
This commit is contained in:
@@ -53,7 +53,7 @@ bool espnow_init_allowed()
|
||||
}
|
||||
|
||||
namespace {
|
||||
extern "C" void onReceive(const uint8_t *mac_addr, const uint8_t *data, int data_len)
|
||||
extern "C" void onReceive(const esp_now_recv_info* info, const uint8_t *data, int data_len)
|
||||
{
|
||||
ESP_LOGD(TAG, "Received data");
|
||||
const std::string_view data_str{(const char *)data, size_t(data_len)};
|
||||
|
@@ -397,10 +397,12 @@ std::string toString(esp_chip_model_t esp_chip_model)
|
||||
return "ESP32S3";
|
||||
case CHIP_ESP32C3:
|
||||
return "ESP32C3";
|
||||
case CHIP_ESP32H2:
|
||||
return "ESP32H2";
|
||||
case CHIP_ESP32H4:
|
||||
return "ESP32H4";
|
||||
case CHIP_ESP32C2:
|
||||
return "ESP32C2";
|
||||
case CHIP_ESP32C6:
|
||||
return "ESP32C6";
|
||||
default:
|
||||
return "invalid";
|
||||
}
|
||||
|
Reference in New Issue
Block a user