Search found 200 matches

by liaifat85
Mon Dec 18, 2023 12:01 pm
Forum: General Discussion
Topic: custom ESP32-C3 board with native USB does not work
Replies: 4
Views: 49074

Re: custom ESP32-C3 board with native USB does not work

Along with what ESP-sprite has suggested, also check if your PCB has a manufacturing error.
by liaifat85
Sun Dec 17, 2023 7:55 am
Forum: Hardware
Topic: ESP32 drawing too much current
Replies: 2
Views: 30211

Re: ESP32 drawing too much current

Since it's a customized PCB, I think you should perform a QC of your PCB. Test with a multimeter. Find out if there is any accidental short circuit somewhere.
by liaifat85
Sun Dec 17, 2023 7:52 am
Forum: General Discussion
Topic: TinyUSB Mass Storage Device Example very slow
Replies: 1
Views: 57495

Re: TinyUSB Mass Storage Device Example very slow

Try to optimize your code. Get rid of unnecessary delays, loops, or other bottlenecks that might be slowing down the transfer process.
by liaifat85
Wed Dec 13, 2023 6:12 am
Forum: ESP8266
Topic: Esp8266 motor
Replies: 1
Views: 20426

Re: Esp8266 motor

by liaifat85
Sat Dec 09, 2023 1:29 pm
Forum: General Discussion
Topic: can't printf with ESP32-S2 ESP-IDF 5.1
Replies: 5
Views: 55118

Re: can't printf with ESP32-S2 ESP-IDF 5.1

As far as I know, printf will not work in Arduino frameworks. Rather it should be Serial.print()

Code: Select all

#include <Arduino.h>

void setup() {
  Serial.begin(115200);
  Serial.println("Hello, world!");
}

void loop() {
  // Your code here
}
by liaifat85
Fri Dec 08, 2023 12:35 pm
Forum: Hardware
Topic: Design ESP-CAM
Replies: 3
Views: 16900

Re: Design ESP-CAM

From the 2 datasheets it looks like, the dimensions are not the same. Slightly different.
https://fcc.report/FCC-ID/2AHMR-ESP32S/4169856
https://www.mouser.in/datasheet/2/891/e ... 365844.pdf
by liaifat85
Thu Dec 07, 2023 2:41 pm
Forum: Hardware
Topic: Design ESP-CAM
Replies: 3
Views: 16900

Re: Design ESP-CAM

Are you talking about the ESP32-S2 series or S3 series?
by liaifat85
Thu Dec 07, 2023 2:26 pm
Forum: General Discussion
Topic: Failed to allocate dma buffer
Replies: 1
Views: 3993

Re: Failed to allocate dma buffer

Try to decrease the dma_buf_count and dma_buf_len values in i2s_config_OUT. See if it helps.