Failed ESP32 FCC testing

digsub
Posts: 14
Joined: Sat Apr 22, 2017 9:17 am

Failed ESP32 FCC testing

Postby digsub » Thu Dec 03, 2020 1:24 pm

My device incorporating an ESP-WROOM-32 module has initially failed FCC Part 15 Unintentional Radiator Testing. Spurious emissions at the second harmonic are significantly higher than Espressif's original FCC test report and out of tolerance.

Espressif's FCC test report (pg 7) says "The worst condition was performed under: 802.11b: Data rate: 1Mbps, Power Level: 20 , etc"

So...

1) Does this mean Espressif testing was done at 20dBm max Tx power or 5dBm as follows from esp_wifi_set_max_tx_power(20) ?

2) If it is 5dBm as I hope, then setting my device from esp_wifi_set_max_tx_power(78) to esp_wifi_set_max_tx_power(20) should fix my spurious emissions ?

3) Lastly, please check my code to set max_tx_power to 5dBm in the US or the value for another country returned when country policy is WIFI_COUNTRY_POLICY_AUTO:

Code: Select all

  
  WiFi.mode(WIFI_AP_STA); 
  wifi_country_t country;

  strcpy(country.cc, "US");
  country.schan = 1;
  country.nchan = 11; 
  country.max_tx_power = 20;
  country.policy = WIFI_COUNTRY_POLICY_AUTO;

  ESP_ERROR_CHECK(esp_wifi_set_country(&country));
  ESP_ERROR_CHECK(esp_wifi_get_country(&country));
  ESP_ERROR_CHECK(esp_wifi_set_max_tx_power(country.max_tx_power));
  ESP_ERROR_CHECK(esp_wifi_get_max_tx_power(&power));

  Serial.print("Power (dBm) = ");
  Serial.println(power * 0.25);

ESP_Alvin
Posts: 207
Joined: Thu May 17, 2018 2:26 am

Re: Failed ESP32 FCC testing

Postby ESP_Alvin » Fri Dec 04, 2020 6:24 am

Hi digsub,

Thanks for reporting, it will be appreciated if you could write to sales@espressif.com. Thanks.

WiFive
Posts: 3529
Joined: Tue Dec 01, 2015 7:35 am

Re: Failed ESP32 FCC testing

Postby WiFive » Sat Dec 05, 2020 10:30 pm

Also please post when there is a resolution

digsub
Posts: 14
Joined: Sat Apr 22, 2017 9:17 am

Re: Failed ESP32 FCC testing

Postby digsub » Sun Dec 06, 2020 8:33 am

I've contacted sales, but I am still awaiting additional information.

Who is online

Users browsing this forum: No registered users and 68 guests