Page 1 of 1

ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Tue Aug 21, 2018 7:09 am
by devang.dixit
I have a multi-tasking wifi application currently running on ESP-WROOM-32, can I run the same application on ESP32-WROOVER?
If not then which type of changes is required?

Re: ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Tue Aug 21, 2018 9:28 am
by ESP_Sprite
Yes, given you do not use GPIO16/GPIO17, as these are used for PSRAM on the Wrover module. Aside from the additional PSRAM, the units are the same.

ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Tue Aug 21, 2018 10:05 am
by devang.dixit
I have a multi-tasking application which uses wifi, which is running on ESP-WROOM-32. Can I use the same application on ESP32-WROVER?
What are the changes to be done to run the same application on ESP-32-WROVER?

Re: ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Tue Aug 21, 2018 12:18 pm
by mikemoy

Re: ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Tue Aug 21, 2018 4:37 pm
by fly135
devang.dixit wrote:I have a multi-tasking application which uses wifi, which is running on ESP-WROOM-32. Can I use the same application on ESP32-WROVER?
What are the changes to be done to run the same application on ESP-32-WROVER?
Nothing needs to be changed. If you want to use the additional ram you may need to modify parameters with make menuconfig. Also I found that if the SPI is running at 80MHz you may need to slow it to 40MHz. That might be the thing that makes your current app fail on the the WROVER.

Re: ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Wed Aug 22, 2018 1:29 am
by ESP_Sprite
I merged your two threads, by the way. Keep your (similar) questions in one thread next time, please.

Re: ESP-WROOM-32 to ESP32-WROVER upgrade

Posted: Fri Aug 24, 2018 4:07 am
by devang.dixit
ok, thx