fix(phy): esp32s2 and esph2 support rf cert_test

This commit is contained in:
muhaidong
2024-08-16 17:12:16 +08:00
parent 45e31cc02b
commit d665d43d0a
3 changed files with 8 additions and 2 deletions

View File

@ -38,7 +38,9 @@ void app_main(void)
register_phy_cmd();
/* rftest.a requirements */
esp_wifi_power_domain_on();
#ifndef CONFIG_IDF_TARGET_ESP32H2
esp_wifi_power_domain_on();
#endif
esp_phy_rftest_config(1);
esp_phy_rftest_init();

View File

@ -0,0 +1,4 @@
#
# ESP32S3-specific
#
CONFIG_ESP_MAIN_TASK_STACK_SIZE=4096