Search found 27 matches
- Mon Sep 20, 2021 1:05 am
- Forum: ESP-IDF
- Topic: Mac M1 Linux aarch64 support
- Replies: 3
- Views: 3831
Re: Mac M1 Linux aarch64 support
Thank you; Look forward to it; I was able to compile the crosstool (after banging my head against the wall for two days) The actual solution was simple, minor corrections for the expat component configuration. Screenshot below.
- Fri Sep 17, 2021 1:37 am
- Forum: ESP-IDF
- Topic: Mac M1 Linux aarch64 support
- Replies: 3
- Views: 3831
Mac M1 Linux aarch64 support
I am running the ESP32 dev on Linux Ubuntu x86_64. Works fantastic. I installed Ubuntu on the new Mac book Air in a UTM virtual machine, and trying to compile ESP32 project(s). On installation, I encounter the message 'aarch(64)' is not supported. It would be nice to see this platform supported on t...
- Mon Apr 12, 2021 3:53 pm
- Forum: Report Bugs
- Topic: Reset in light sleep
- Replies: 9
- Views: 64428
Re: Reset in light sleep
More info:
IDF version:
ESP-IDF: v4.3-dev-1720-g494a124d9
I upgraded from a 3.x , same error on both IDF versions.
IDF version:
ESP-IDF: v4.3-dev-1720-g494a124d9
I upgraded from a 3.x , same error on both IDF versions.
- Sat Apr 10, 2021 12:29 am
- Forum: Report Bugs
- Topic: Reset in light sleep
- Replies: 9
- Views: 64428
Reset in light sleep
I have code that puts the ESP32 to light sleep with a timer (10s) and wakes it up. The code works as intended on the ESP32-WROOM32D, but it fails in ESP-WROOM32 (older, no D) The failure appears to be that the (no D) chip does not go to sleep, and the RTC timer {WD} resets the system; [Confirmed it ...
- Sat Apr 10, 2021 12:10 am
- Forum: Report Bugs
- Topic: Software reset in light sleep mode
- Replies: 1
- Views: 7793
Re: Software reset in light sleep mode
I have the same ...
- Tue Oct 06, 2020 7:46 pm
- Forum: ESP-IDF
- Topic: Need API support to provide micro seconds delay
- Replies: 12
- Views: 23676
Re: Need API support to provide micro seconds delay
This will take about 30 microseconds to execute: int samp = adc1_get_raw((adc1_channel_t)channel2); So for a hundred microsecond delay do: for(int loop = 0; loop < 3; loop++) { int samp = adc1_get_raw((adc1_channel_t)channel2); } It goes without saying that this a workaround for a systematic solutio...
- Fri Jul 17, 2020 4:45 pm
- Forum: General Discussion
- Topic: Devkit-c v2 and v4
- Replies: 0
- Views: 2364
Devkit-c v2 and v4
I have several Devkit-C boards for development. I am using Ubuntu 18.04 to program them; Everything works fantastic, except on the V4 I have to unplug the board (power down reset) to bring it back up. The V2 boards work flawlessly in the same situation.. When I program the ESP32 on Windows, all work...
- Wed Jan 22, 2020 11:27 pm
- Forum: ESP-IDF
- Topic: ESPNow and WiiFI
- Replies: 0
- Views: 2221
ESPNow and WiiFI
Our customer is afraid of deploying the product we developed, because it uses EspNow, and they question if it interferes with the Wi-Fi network at their client's site. Please point to a documentation that we can use as an assurance of the coexistence of EspNow and Wi-Fi. Please let me know if you ha...
- Fri Aug 16, 2019 3:30 pm
- Forum: ESP-IDF
- Topic: Https header missing (esp_https_server.h)
- Replies: 3
- Views: 5562
Re: Https header missing (esp_https_server.h)
That was it. Settings may have not migrated from IDF3->IDF4 without loosing that flag.
Thank you.
Thank you.
- Thu Aug 15, 2019 4:18 pm
- Forum: ESP-IDF
- Topic: Https header missing (esp_https_server.h)
- Replies: 3
- Views: 5562
Https header missing (esp_https_server.h)
Upon update to IDF 4.x the https subsystems do not compile, says 'missing esp_https_server.h'
on 3.x it compiled with no error. Any suggestions?
Peter
on 3.x it compiled with no error. Any suggestions?
Peter