Search found 9041 matches

by ESP_Sprite
Tue Apr 18, 2023 1:12 am
Forum: General Discussion
Topic: Configuring UART registers and peripheral clock
Replies: 9
Views: 2576

Re: Configuring UART registers and peripheral clock

From memory, the Tx fifo starts sending as soon as you write a byte to it. The idea of the FIFO is that you can write a fair amount of data into it in one go, faster than the data is sent; if you're doing the sending interrupt-based, it means you don't have to fire an interrupt every byte.
by ESP_Sprite
Mon Apr 17, 2023 1:45 am
Forum: ESP32 Arduino
Topic: Suddenly getting a Heap error on SSCANF
Replies: 3
Views: 2816

Re: Suddenly getting a Heap error on SSCANF

Btw, just to confirm, this is memory corruption: your code somehow writes to a location it should not, corrupting the meta-information of the allocator.
by ESP_Sprite
Mon Apr 17, 2023 1:42 am
Forum: ESP-IDF
Topic: Is there a way to trigger download boot mode by software?
Replies: 4
Views: 2288

Re: Is there a way to trigger download boot mode by software?

On which chip? The ESP32 doesn't have this, later chips (S2/S3, C series) sometimes do.
by ESP_Sprite
Mon Apr 17, 2023 1:38 am
Forum: Hardware
Topic: ESP32-S2 - GPIO 39 not working as ouput?
Replies: 2
Views: 853

Re: ESP32-S2 - GPIO 39 not working as ouput?

Yes, it probably is configured by default to JTAG. Use gpio_reset() to reconfigure it to a plain old GPIO.
by ESP_Sprite
Mon Apr 17, 2023 1:34 am
Forum: General Discussion
Topic: ESP32-WROOM-32UE connected LCD causing a problem.
Replies: 1
Views: 896

Re: ESP32-WROOM-32UE connected LCD causing a problem.

What specific GPIOs is that connected to? It looks like you're connecting to GPIOs that also occupy the flash pins (or something else is wrong with those GPIOs - shorted or something), which would stop the ESP from being able to communicate with its flash.
by ESP_Sprite
Sat Apr 15, 2023 1:37 am
Forum: Hardware
Topic: Does ESP32-C6 support external SPIRAM?
Replies: 1
Views: 844

Re: Does ESP32-C6 support external SPIRAM?

No, it does not support external SPIRAM (except as a generic SPI peripheral, where you would need to manually write bytes to and read bytes from it).
by ESP_Sprite
Fri Apr 14, 2023 2:09 am
Forum: General Discussion
Topic: ESP32S2 doesn't show serial port after flashing with hello world example
Replies: 4
Views: 1864

Re: ESP32S2 doesn't show serial port after flashing with hello world example

You might need to use menuconfig to set the standard log console to CDC/ACM.
by ESP_Sprite
Fri Apr 14, 2023 2:04 am
Forum: ESP32 Arduino
Topic: Adding password visibility to html page in esp32 wifi manager
Replies: 5
Views: 1935

Re: Adding password visibility to html page in esp32 wifi manager

Quick hack that probably does what you want: change

Code: Select all

<input id=\"p\" name=\"p\" length=64 type=\"password\" placeholder=\"Password123\">
to

Code: Select all

<input id=\"p\" name=\"p\" length=64 type=\"text\" placeholder=\"Password123\">
by ESP_Sprite
Fri Apr 14, 2023 2:01 am
Forum: ESP32 Arduino
Topic: Using I2C inside a interrupt handler
Replies: 2
Views: 1844

Re: Using I2C inside a interrupt handler

You can do very little in an interrupt handler, and specifically doing anything that block the calling task will crash the ESP32 (as an interrupt handler is not a task). The proper way would be to use FreeRTOS tasks and semaphores (or other inter-task things that FreeRTOS provides): the task blocks ...
by ESP_Sprite
Fri Apr 14, 2023 1:53 am
Forum: Hardware
Topic: Native USB issue on an esp32-s2-solo module (not kit)
Replies: 2
Views: 891

Re: Native USB issue on an esp32-s2-solo module (not kit)

DFU 'run' mode needs support in the app. If you use esp-idf, using menuconfig to set the logging console to CDC/ACM should enable that.