Search found 9042 matches

by ESP_Sprite
Mon Feb 07, 2022 3:13 pm
Forum: ESP-IDF
Topic: Getting make menuconfig Error
Replies: 1
Views: 1244

Re: Getting make menuconfig Error

How did you install esp-idf?
by ESP_Sprite
Mon Feb 07, 2022 3:11 pm
Forum: Hardware
Topic: [SOLVED] ESP32-C3, I can't understand this specification
Replies: 2
Views: 1938

Re: ESP32-C3, I can't understand this specification

The idea is that you can handle 4 different 'modes' at the same time, for example STA + AP + ESPNow + monitor mode. ESP-IDF handles this 'under the hood', you can simply e.g. set WiFi to sta+ap mode and start up esp-now.
by ESP_Sprite
Mon Feb 07, 2022 3:09 pm
Forum: General Discussion
Topic: ESP32 IllegalInstruction
Replies: 3
Views: 2942

Re: ESP32 IllegalInstruction

That PC address, 0x6b726f77, looks like ASCII... 'work' if I decode it. That smells like you're trying to put too much data into one of the class members, overwriting your return address with ascii data.
by ESP_Sprite
Mon Feb 07, 2022 6:04 am
Forum: ESP-IDF
Topic: DFU Flashing - ESP32-S3-DevKitC
Replies: 3
Views: 2660

Re: DFU Flashing - ESP32-S3-DevKitC

Yep.
by ESP_Sprite
Mon Feb 07, 2022 4:45 am
Forum: General Discussion
Topic: Can I use esp_flash_read to get a secret, unique identification or encryption key?
Replies: 6
Views: 5694

Re: Can I use esp_flash_read to get a secret, unique identification or encryption key?

@WiFive and @ESP_Sprite Yes, thank you, I forgot that bootloader is also encrypted in flash. > Note that you're using the FFs as a nonce here. Cryptography-wise, there's nothing wrong with that in particular as far as I can tell No, as "nvs_flash_generate_keys" code says: https://github.com/espress...
by ESP_Sprite
Mon Feb 07, 2022 1:23 am
Forum: ESP-IDF
Topic: DFU Flashing - ESP32-S3-DevKitC
Replies: 3
Views: 2660

Re: DFU Flashing - ESP32-S3-DevKitC

Do you see the USB-serial-JTAG device the S3 has? If so, you actually need to burn a fuse to switch that over to use the USB-OTG peripheral instead on bootup.
by ESP_Sprite
Mon Feb 07, 2022 1:22 am
Forum: Hardware
Topic: Won't run on battery power
Replies: 11
Views: 9914

Re: Won't run on battery power

I think you are right. The normal qualified fast-charger should active like this. However, the fast-charger in china maybe not very reliable. One of my Bluetooth ear-pods, the package said that do not use the fast charger. I think issues that fast-charger damage ear-pods often happens. Hm, that's f...
by ESP_Sprite
Mon Feb 07, 2022 1:20 am
Forum: Hardware
Topic: Not able to program ESP32-C3-MINI-1-N4 on a custom PCB board
Replies: 5
Views: 4315

Re: Not able to program ESP32-C3-MINI-1-N4 on a custom PCB board

This I have also tried directly soldering the ESP32-C3-MINI-N4 module to the wires of the programmer without a PCB. No luck. leads me to think you may have mis-interpreted something in how to hook up that module, as in, it may not be your soldering process at fault. Can you share your PCB / schemati...
by ESP_Sprite
Mon Feb 07, 2022 1:12 am
Forum: Hardware
Topic: Unable write to I2C FIFO on ESP32C3
Replies: 5
Views: 3070

Re: Unable write to I2C FIFO on ESP32C3

Yep, that looks like a mistake in the register description docs. I'll ping the documentation team to fix it. Looking at the ll hal layer of the i2c driver in esp-idf, the data register indeed is writable, and sr.tx_fifo_cnt should indeed increase when you write that. Are you sure the I2C peripheral ...
by ESP_Sprite
Mon Feb 07, 2022 1:00 am
Forum: General Discussion
Topic: Can I use esp_flash_read to get a secret, unique identification or encryption key?
Replies: 6
Views: 5694

Re: Can I use esp_flash_read to get a secret, unique identification or encryption key?

WiFive has a point. You need to read something in flash that is unencrypted, as if it were encrypted flash; the other way around does not make your key secret anymore. If you don't like looking for 0xFFs or writing to flash, how about creating a small partition that never is written to (and as such ...