Search found 9536 matches

by ESP_Sprite
Sat Sep 07, 2024 6:48 am
Forum: ESP-IDF
Topic: NVS Key values pairs
Replies: 6
Views: 435

Re: NVS Key values pairs

Doesn't look like it. I'll file an internal issue.
by ESP_Sprite
Sat Sep 07, 2024 6:45 am
Forum: Report Bugs
Topic: [BBS] SQL ERROR [ mysqli ] several times a day and at night and now increasingly longer-lasting
Replies: 4
Views: 299

Re: [BBS] SQL ERROR [ mysqli ] several times a day and at night and now increasingly longer-lasting

Yep. Some fly-by-night (no proper user agent) crawler decided to hit our forum from like 30 different IPs. They're blocked now.
by ESP_Sprite
Fri Sep 06, 2024 10:13 am
Forum: ESP-IDF
Topic: NVS Key values pairs
Replies: 6
Views: 435

Re: NVS Key values pairs

atique wrote:
Fri Sep 06, 2024 8:16 am
while my partition size is just 0x1000.
That may be your problem: NVS needs at least 3 sectors and you're only giving it one.
by ESP_Sprite
Fri Sep 06, 2024 10:08 am
Forum: General Discussion
Topic: Hosting a Node.js Server on ESP32 or External Hosting for Wi-Fi and Setpoint Form
Replies: 4
Views: 274

Re: Hosting a Node.js Server on ESP32 or External Hosting for Wi-Fi and Setpoint Form

Vaibhav02 wrote:
Fri Sep 06, 2024 6:04 am
If I run my Node.js server on the ESP32,
Node.js cannot (meaningfully) run on an ESP32.
by ESP_Sprite
Fri Sep 06, 2024 2:14 am
Forum: ESP-IDF
Topic: How can I send empty mqtt message to broker to delete some retained message?
Replies: 5
Views: 3764

Re: How can I send empty mqtt message to broker to delete some retained message?

You could select the menuconfig option to make the task wdt panic; that should give you a backtrace that may give us more info.
by ESP_Sprite
Fri Sep 06, 2024 2:09 am
Forum: ESP-IDF
Topic: NVS Key values pairs
Replies: 6
Views: 435

Re: NVS Key values pairs

Not sure what's wrong, but the canonical way to do this is to use the esp-idf build system to generate the partition so you're sure you have an entirely clean one. Perhaps try that?
by ESP_Sprite
Fri Sep 06, 2024 2:04 am
Forum: General Discussion
Topic: Distribute a protected app to customers
Replies: 7
Views: 1832

Re: Distribute a protected app to customers

Thank you for your patience , understood ! Then the only way to it is : - flashing myself with encryption on This is correct - ask the manufacturer to do it (giving him the key) What would usually happen is that you give the manufacturer a bootloader, partition table and 'factory' app. If you compi...
by ESP_Sprite
Thu Sep 05, 2024 2:07 am
Forum: ESP-IDF
Topic: Values in argument struct change after xQueueReceive
Replies: 3
Views: 934

Re: Values in argument struct change after xQueueReceive

You're welcome. Yeah, variable lifetime (and ownership) suddenly gets a lot more important as you're passing pointers between tasks.
by ESP_Sprite
Thu Sep 05, 2024 2:04 am
Forum: ESP32 Arduino
Topic: Can't flash ESP32-S2-Mini-2 module (boot loop?)
Replies: 2
Views: 837

Re: Can't flash ESP32-S2-Mini-2 module (boot loop?)

Also that terminal screenshot looks like the ESP is getting too little power... perhaps your power supply lines are too thin/long? Adding a large cap (100u electrolytic or something, whatever you have in your parts bin) to the 3.3v power supply close to the pads of the module might help then.
by ESP_Sprite
Thu Sep 05, 2024 1:59 am
Forum: Hardware
Topic: The issue regarding the inability to enable GPIO48 on the ESP32S3
Replies: 2
Views: 456

Re: The issue regarding the inability to enable GPIO48 on the ESP32S3

Change it to

Code: Select all

 .pin_bit_mask=(1ULL<<LED_GPIO),
The compiler likely gave you a warning about this.