Search found 3529 matches

by WiFive
Sat Dec 21, 2019 7:51 am
Forum: General Discussion
Topic: Am I running out of memory?
Replies: 2
Views: 2874

Re: Am I running out of memory?

Update your idf it was fixed recently
by WiFive
Fri Dec 20, 2019 11:09 pm
Forum: Hardware
Topic: Dev board with white dot on antenna
Replies: 1
Views: 2414

Re: Dev board with white dot on antenna

Its interesting, but possible there is no correlation between the white dot and performance. There could be white dots out there with poor performance. There are also blue dots and yellow dots. Are they all the same module or do you have some wroom-32-D? If you post the Mac addresses it may help ide...
by WiFive
Fri Dec 20, 2019 9:46 am
Forum: ESP-IDF
Topic: ESP32 kills Asus Blue Cave Router
Replies: 19
Views: 20274

Re: ESP32 kills Asus Blue Cave Router

@Besmir.likaj post your router firmware and hardware version information and if possible ask mysa what esp-idf version they use
by WiFive
Fri Dec 13, 2019 6:55 am
Forum: ESP-IDF
Topic: Suggest rewriting some of the ESP-IDF UART doc
Replies: 2
Views: 3106

Re: Suggest rewriting some of the ESP-IDF UART doc

Data is copied out of hardware fifo into ringbuffer when ringbuffer is full (threshold) or when frame ends (rx line idle).
by WiFive
Wed Dec 11, 2019 12:42 pm
Forum: General Discussion
Topic: How to use timer of esp32?
Replies: 4
Views: 3889

Re: How to use timer of esp32?

Smarter to use rmt peripheral
by WiFive
Tue Dec 10, 2019 12:07 pm
Forum: General Discussion
Topic: CAN frame corruption following FATFS write to FLASH
Replies: 4
Views: 3770

Re: CAN frame corruption following FATFS write to FLASH

The only things that run during flash write are IRAM interrupts. So the buffer will have to be big enough to hold all the data received during the flash write. Maybe you want to make sure the can interrupt is on a different core from the flash write. Using can hw filters could help. Or custom can is...
by WiFive
Sat Dec 07, 2019 1:57 am
Forum: ESP-IDF
Topic: PWM Generating at expanded GPIO
Replies: 3
Views: 4661

Re: PWM Generating at expanded GPIO

The best way is use an expander that has a built in led driver
by WiFive
Thu Dec 05, 2019 12:35 pm
Forum: Hardware
Topic: ESP32 BLE 2018 V 2019 boards problem
Replies: 1
Views: 2749

Re: ESP32 BLE 2018 V 2019 boards problem

If the binary is the same and you fully erased the flash then it could be a hardware rf problem. There was a report of a bad capacitor issue on this forum but I don't think there was any official statement about it.
by WiFive
Thu Dec 05, 2019 7:03 am
Forum: ESP-IDF
Topic: 32-character long WiFi SSID Support
Replies: 1
Views: 3871

Re: 32-character long WiFi SSID Support

It should be either 32 characters long OR NULL-terminated, but I haven't tried.

https://github.com/espressif/esp-idf/issues/3762