Replies: 1 comment
-
|
For anyone interested, I adjusted the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Russ! Would you be able to provide the CMAKE configs you are using for your binaries? We have successfully used your compiled binary for a generic ESP32 with 8MB SPIRAM for our
ESP32-WROVER-E-N8R8.However, I wanted to make some tweaks to the base image.
I cloned
masterbranch of your repoI had to make a tweak to one
.cmakefile in micropython, and I had to change the relative paths for the manifest. But I did get an image that all (seemingly) worked correctly with the latest micropython!I used the following tweaked
makecommands based on your documentation.make \ BOARD=ESP32_GENERIC \ BOARD_VARIANT=SPIRAM \ USER_C_MODULES=../../../../gc9a01_mpy/src/micropython.cmake \ FROZEN_MANIFEST=../../../../../../gc9a01_mpy/manifest.py \ clean submodules all make \ BOARD=ESP32_GENERIC \ BOARD_VARIANT=SPIRAM \ USER_C_MODULES=../../../../gc9a01_mpy/src/micropython.cmake \ FROZEN_MANIFEST=../../../../../../gc9a01_mpy/manifest.py \ erase deployBut I did still run into some runtime issues, specifically with the
spifrequency. I had originally been driving it atmachine.freq() // 2per the docs, so 120Mhz when I set the clock frequency to 240Mhz. Unfortunately, with the above stated branches, it would give me a runtime crash and forced me to lower it to 26.7MHz.So all that being said, I have a few (hopefully easy) asks
makeconfigs you are using the build the above referenced image?merge-binconfig (assuming that is what you are using) to combine the bootloader, partition table, and application binaries into the unified binary above?Thanks in advance for any insight you have!
Beta Was this translation helpful? Give feedback.
All reactions