Search found 200 matches

by liaifat85
Sun Apr 28, 2024 2:39 pm
Forum: ESP8266
Topic: How are multiple interrupts on different pins handled?
Replies: 2
Views: 1111

Re: How are multiple interrupts on different pins handled?

If the first power meter triggers its ISR and then the second power meter triggers another ISR while the first ISR is still executing, the second ISR will not be immediately serviced. Instead, it will be put in a queue and handled after the first ISR completes.
by liaifat85
Sat Apr 27, 2024 6:54 pm
Forum: General Discussion
Topic: Using ESP8266 with mobile app, AppStore submit problem
Replies: 1
Views: 436

Re: Using ESP8266 with mobile app, AppStore submit problem

This is something really new that I am hearing. Where can we get such NOC certificates from. I hope ESP authority will give a guidline.
by liaifat85
Sat Apr 27, 2024 6:47 pm
Forum: General Discussion
Topic: ESP32 Arduino and running tasks
Replies: 2
Views: 494

Re: ESP32 Arduino and running tasks

Is this thread helpful to you?

viewtopic.php?t=16115
by liaifat85
Wed Apr 24, 2024 6:17 pm
Forum: ESP-IDF
Topic: How to handle file system on factory reset
Replies: 1
Views: 321

Re: How to handle file system on factory reset

It's a good idea to check for the existence of the operational file system on startup. You can use various methods to do this, such as checking for the presence of certain files or directories that are expected to exist in the operational file system.
by liaifat85
Wed Apr 24, 2024 6:02 pm
Forum: General Discussion
Topic: Enable Flash Encryption Release Mode in ESP32-S3
Replies: 1
Views: 331

Re: Enable Flash Encryption Release Mode in ESP32-S3

For the ESP32-S3, similar to the ESP32, one common eFuse setting that affects flash encryption is DISABLE_DL_ENCRYPT. If you're encountering this error after enabling flash encryption in RELEASE mode, it's likely that you need to burn the DISABLE_DL_ENCRYPT eFuse to disable flash encryption.
by liaifat85
Wed Apr 24, 2024 5:54 pm
Forum: ESP8266
Topic: Autoreconnect not working after connection with credentials, but..
Replies: 2
Views: 1246

Re: Autoreconnect not working after connection with credentials, but..

you can modify your code to include the WiFi.persistent(true) function call after setting the Wi-Fi credentials: void getWiFi() { Serial.printf("Reconnecting to %s\n", WIFI_SSID); byte retry; WiFi.begin(); WiFi.waitForConnectResult(); if (WiFi.status() == WL_CONNECTED) { Serial.println("Connected");...
by liaifat85
Wed Apr 24, 2024 5:50 pm
Forum: General Discussion
Topic: WireGuard VPN Implementation on ESP32S3
Replies: 4
Views: 707

Re: WireGuard VPN Implementation on ESP32S3

Looks like no wireguard-related library has been updated for S3. The following is applicable for S2 and C3 but there is no mention of S3.
https://github.com/trombik/esp_wireguard
by liaifat85
Tue Apr 23, 2024 7:29 am
Forum: ESP-IDF
Topic: esp32s3 wifi
Replies: 3
Views: 386

Re: esp32s3 wifi

On the iPhone, check the network settings to see if it's set to automatically switch to cellular data when the WiFi network has no internet access.
by liaifat85
Tue Apr 23, 2024 7:25 am
Forum: ESP32 Arduino
Topic: PWM Signal problems
Replies: 1
Views: 452

Re: PWM Signal problems

I mean, i fixed the bug by moving the ledcAttach() parts back to global setup() but does anyone have an explanation for this? If the ledHandler class or its setup() method has different scope or lifetime compared to the global setup, it could potentially lead to unexpected behaviour. It is more lik...
by liaifat85
Tue Apr 23, 2024 6:57 am
Forum: ESP-ADF
Topic: Hang in i2s element
Replies: 2
Views: 1079

Re: Hang in i2s element

Perform checks on your custom board to ensure there are no hardware issues such as signal integrity problems, clock mismatches, or power supply fluctuations affecting the I2S peripheral.