Search found 9042 matches

by ESP_Sprite
Thu Aug 18, 2022 1:06 am
Forum: ESP-IDF
Topic: Arduino component
Replies: 2
Views: 801

Re: Arduino component

The current stable version still is 4.x.x; the 5.x.x branch is not stable yet. ESP-IDF as of now only is for ESP32-type chips; the ESP8266 is not supported. (If you want a chip of ESP8266 size that is supported, you may be interested in the ESP32C3 or ESP32C2; they're of similar capabilities and ful...
by ESP_Sprite
Thu Aug 18, 2022 12:52 am
Forum: ESP-IDF
Topic: Problems with writing CMakeLists.txt for a project
Replies: 4
Views: 3142

Problems with writing CMakeLists.txt for a project

I've changed your post title, if everyone would post under a title of 'Can please someone help me out !!!', we might as well do away with the concept of titles all together. Now for your issue. I see a fair few things wrong with your setup: - A component is a directory within the components/ folder....
by ESP_Sprite
Thu Aug 18, 2022 12:48 am
Forum: ESP-IDF
Topic: i2c_master_cmd_begin fails, returns ESP_FAIL
Replies: 7
Views: 2347

Re: i2c_master_cmd_begin fails, returns ESP_FAIL

Are you sure that the device you have connected actually lives at that address?
by ESP_Sprite
Thu Aug 18, 2022 12:47 am
Forum: General Discussion
Topic: facing this - RTCWDT_RTC_RESET error while giving power supply to esp32
Replies: 3
Views: 1512

Re: facing this - RTCWDT_RTC_RESET error while giving power supply to esp32

Can't really say. Can you use esptool.py to read out the full flash, see if that succeeds?
by ESP_Sprite
Tue Aug 16, 2022 11:38 pm
Forum: ESP-IDF
Topic: Can't delete certain unnecessary lines of code
Replies: 3
Views: 1114

Re: Can't delete certain unnecessary lines of code

I'm not seeing a particular issue, but one thing of note is that you're handling the output of base64decode as strings. That function can output 0 bytes as well (dependent on the input) which would terminate the string right there. It's probably better if you handle binary data as binary data: don't...
by ESP_Sprite
Tue Aug 16, 2022 11:20 pm
Forum: General Discussion
Topic: facing this - RTCWDT_RTC_RESET error while giving power supply to esp32
Replies: 3
Views: 1512

Re: facing this - RTCWDT_RTC_RESET error while giving power supply to esp32

That flash read image error does not look good; it essentially means communication with flash is kaput. Can you expand a bit on what board this is and how you use it? (Schematics would be welcome.) Also, you may want to check if your module uses XMC flash and has status bit corruption, it's a known ...
by ESP_Sprite
Tue Aug 16, 2022 2:56 am
Forum: ESP32 Arduino
Topic: How to use 2 cores in ESP32
Replies: 2
Views: 1487

Re: How to use 2 cores in ESP32

Moving to the Arduino subforum.
by ESP_Sprite
Mon Aug 15, 2022 1:45 am
Forum: General Discussion
Topic: ESP32-C3 Log output only on USB
Replies: 3
Views: 2616

Re: ESP32-C3 Log output only on USB

I don't think it's possible, sorry... you either get ROM chatter on both USB and UART, or (if you disable it via efuse) you don't get it at all. If your hardware depends on it, I'd simply disable it in efuse, honestly.
by ESP_Sprite
Fri Aug 12, 2022 2:04 am
Forum: General Discussion
Topic: nRF9160 external modem
Replies: 2
Views: 1982

Re: nRF9160 external modem

That is going to be loads of work, as the external modem effectively has its own TCP/IP stack, replacing the LWIP stack that esp-idf uses internally. You could indeed modify esp_transport, but that would only work for the components that uses those - anything that uses default POSIX sockets (includi...
by ESP_Sprite
Thu Aug 11, 2022 12:50 am
Forum: Documentation
Topic: ESP32-C3 Datasheet Pulse Counter
Replies: 3
Views: 6076

Re: ESP32-C3 Datasheet Pulse Counter

There is no pulse counter in the ESP32C3. If you look at the diagram mentioned above in the current datasheet, the reference to the pulse counter has been removed.