-
-
Notifications
You must be signed in to change notification settings - Fork 624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for ESP32-S3-WROOM-1-N4R2 #1389
Comments
yes. |
Okk can you send me your configuration?? |
this boards json
|
Thanks so much |
Take care to use a matching partition scheme! Every scheme for 4MB flash will work. |
Yes, thanks, I'll implement it now |
Unfortunately, while Espressif and Platformio are at a stalemate, I don't see a lot of merges being accepted to add changes like this. If you control the project and not the build system (perhaps you're distributing open source and don't want to coach people into modifying their build systems or you don't have write access to the platformio directory) you can also get most of the juice from this orange in your own platformio.ini. I've started to split my customizations to the .ini into triplets or quartets. One for the chip. One for the module. One for the board. One for the project. Yes, it's a bit tortured. This runs pretty firmly into a speed bump by 'extends' not actually working sensibly (though tickets to that topic get closed as 'working as documented') but it's workable. Relevant snippets from an active project for that module's bigger sibling. This isn't quite the same module as you have, but it may provide inspirational for anyone else using modern-ish Espressif parts and trying to just make a working binary. This may still technically be a bit over-described, but it's what's in my tree right now, though it's a work in progress. The key for these s3-nNrR modules really is to dial in the memory type as qspi (most boards > 2MB have ospi, not qspi - that's a frequent trap) and to set the BOARD_HAS_PSRAM flag and flash_size. Otherwise, the code will boot loop if it loads at all.
The plan is to build up in layers. Describe the chip. Describe the package. Describe the eval board/hardware. Describe the project running on the hardware. |
It works ok with Tasmota |
Hi everyone, I would like to ask if anyone has already used an esp32-s3-wroom1-n4r2 with platformio
The text was updated successfully, but these errors were encountered: