mahesh2000
mahesh2000
i need to have a static IP range set aside and the rest needs to be dynamically assigned (DHCP). right now, if the device crashes (ping will do it) and...
things like `SWAPPED_TOUCH_INDEX(x)`, which exists because of a bug the ESP32 codebase; touch 8 & 9 need to be swapped. https://github.com/espressif/arduino-esp32/issues/3584
using the correct version of esp32ulp-elf-binutils, not the one with s2 in the name, is one of the problems I had to fix before getting things working.
This seems to have fixed my problem. I'm using the `ulp_README.ino` sketch from `ulp_examples`. I have to compile twice, once to generate the temporary folder, then the next time after...
Also, printing the contents of `glob` in `C:\Users\\Documents\ArduinoData\packages\esp32\tools\ulptool\src\esp32ulp_build_recipe.py`, ``` print("glob:") print(glob.glob('*.*')) ``` shows the following _without_ `ulp.S` the first time around. When run the second time, after the file has...
is there a windows substitute?
Python definitely isn't my jam, bread or butter :-). Any help is appreciated. Right now, I'm copying over s files when updated to the temp folder. Your help would be...
that seems to work! On Sat, Aug 7, 2021 at 12:53 AM angyongen ***@***.***> wrote: > new updated command because my previous one had an error when there are no...
i have a different solution. ensure that you're picking _binutils-**esp32ulp**-xxx.zip_ and not _binutils-**esp32s2ulp**-xxx.zip_. They look almost the same. See https://github.com/espressif/binutils-esp32ulp/releases/tag/v2.28.51-esp-20190801: _binutils-**esp32ulp**-win32-2.28.51-esp-20190801.zip_ and not _binutils-**esp32s2ulp**-win32-2.28.51-esp-20190801.zip_. I still can't get the code...
manually copying over the .s files to the temp folder works. see https://github.com/duff2013/ulptool/issues/78.