Search found 11 matches

by fearless_fool
Mon Jul 29, 2024 4:43 pm
Forum: ESP-IDF
Topic: ESP-IDF 5.2 fails: libusb_set_option could not be located
Replies: 0
Views: 312

ESP-IDF 5.2 fails: libusb_set_option could not be located

I just performed a fresh install of ESP IDF 5.2 with the offline installer ("Espressif-IDE 3.0.0 with ESP-IDF v5.2.2" for Windows 11. I used the default options for installation. The installation completes without error. But launching the ESP-IDF cmd window fails, putting up an alert window: dfu-uti...
by fearless_fool
Fri Jul 19, 2024 5:43 pm
Forum: ESP-IDF
Topic: Using menuconfig to configure wifi_prov_mgr with sec_ver = 0?
Replies: 0
Views: 536

Using menuconfig to configure wifi_prov_mgr with sec_ver = 0?

I want to compile a version of Espressif\frameworks\esp-idf-v5.2.2\examples\provisioning\wifi_prov_mgr to use security version 0. Short form: What must I change in menuconfig to specify security level 0? Details: Running ESP-IDF 5.2 (under Windows 11) with an ESP32-c3, I launch menuconfig: PS C:\Esp...
by fearless_fool
Wed Jul 17, 2024 3:39 pm
Forum: ESP-IDF
Topic: Cannot run esp_prov.py: No module named 'google'
Replies: 2
Views: 999

Re: Cannot run esp_prov.py: No module named 'google'

Solved. Although the https://github.com/espressif/esp-idf/tree/master/tools/esp_prov#dependencies states: This requires the following python libraries to run: bleak protobuf cryptography To install the dependency packages needed, please run the following command: bash install.sh --enable-pytest ... ...
by fearless_fool
Wed Jul 17, 2024 2:44 pm
Forum: ESP-IDF
Topic: lzma module is not available
Replies: 2
Views: 820

Re: lzma module is not available

Solved.

Though the document
https://github.com/espressif/esp-idf/tr ... pendencies
doesn't specify say so, on a Windows system you need to run
.\install.bat
rather than
bash install.sh --enable-pytest

Using .\install.bat the script completed without error.
by fearless_fool
Wed Jul 17, 2024 2:35 pm
Forum: ESP-IDF
Topic: lzma module is not available
Replies: 2
Views: 820

Re: lzma module is not available

Addendum: This line in the script is suspicious: Extracting .../.espressif/dist/xtensa-esp-elf-13.2.0_20230928-x86_64-linux-gnu.tar.xz to .../.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928 Traceback (most recent call last): I'm on a Windows system, not Linux. And I notd that the .espressif/dist...
by fearless_fool
Wed Jul 17, 2024 2:17 pm
Forum: ESP-IDF
Topic: lzma module is not available
Replies: 2
Views: 820

lzma module is not available

On my Windows 11 system, running inside ESP-IDF 5.2 CMD window, I'm trying to run install.sh as described in https://github.com/espressif/esp-idf/tree/master/tools/esp_prov#dependencies However, when I run it, it fails with "lzma module is not available": PS C:\Espressif\frameworks\esp-idf-v5.2.2> b...
by fearless_fool
Wed Jul 17, 2024 2:09 pm
Forum: ESP-IDF
Topic: Cannot run esp_prov.py: No module named 'google'
Replies: 2
Views: 999

Re: Cannot run esp_prov.py: No module named 'google'

Update: I realized that I had not run

Code: Select all

.\install.bat
.\export.bat
Those commands completed without error, but after doing so, I still get "No module named 'google'" as described in the original post.
by fearless_fool
Mon Jul 15, 2024 9:35 pm
Forum: ESP-IDF
Topic: Cannot run esp_prov.py: No module named 'google'
Replies: 2
Views: 999

Cannot run esp_prov.py: No module named 'google'

Using a fresh build of the ESP IDF 5.2 shell under Windows 11, I have built and flashed the code in https://github.com/espressif/esp-idf/tree/master/examples/provisioning/wifi_prov_mgr on an ESP32-C3. It compiles and runs without error. Now I would like to communicate with the wifi_prov_mgr app usin...
by fearless_fool
Sat Jul 11, 2020 10:56 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 443
Views: 906696

Re: What would you like to see in The Next Chip?

The more things that can wake the processor from sleep, the better. One that I've not seen anywhere is a "sleepy UART" mode that draws almost no current until a start bit is seen, then proceeds to capture the entire first byte as it wakes the processor. If you want a longer discussion about optimizi...
by fearless_fool
Sat Jul 11, 2020 10:10 pm
Forum: ESP-IDF
Topic: Create a project w/o FreeRTOS?
Replies: 4
Views: 4888

Re: Create a project w/o FreeRTOS?

Are you are saying that FreeRTOS is permanently baked into every ESP32 application? That would be a pity -- as good as FreeRTOS is, the mulib framework I'd like to port is extremely efficient for low-power applications -- it's inherently tick-less and its single threaded design means that task switc...