Search found 13 matches

by Pixellord
Thu Aug 08, 2024 7:47 am
Forum: ESP-IDF
Topic: RMT transaction on led strip corrupted by WiFi interrupts
Replies: 8
Views: 2006

Re: RMT transaction on led strip corrupted by WiFi interrupts

Thank you for the help. I think I found the cause of my problem. The DMA buffer size for RMT is by default too small in my case. The data frame has to break into several pieces and then extra delay caused by WiFi is then added in between the fragments. I have increased the mem_block_symbols in led_s...
by Pixellord
Wed Aug 07, 2024 12:23 pm
Forum: ESP-IDF
Topic: RMT transaction on led strip corrupted by WiFi interrupts
Replies: 8
Views: 2006

Re: RMT transaction on led strip corrupted by WiFi interrupts

Hi dmitrij999, thanks for help. I am only using one RMT channel for one strip.
Workaround with SPI would be my last option if i really could not fix it with RMT.
by Pixellord
Wed Aug 07, 2024 7:18 am
Forum: ESP-IDF
Topic: RMT transaction on led strip corrupted by WiFi interrupts
Replies: 8
Views: 2006

Re: RMT transaction on led strip corrupted by WiFi interrupts

ESP_Sprite, do you have any idea?
by Pixellord
Fri Aug 02, 2024 7:51 am
Forum: ESP-IDF
Topic: RMT transaction on led strip corrupted by WiFi interrupts
Replies: 8
Views: 2006

Re: RMT transaction on led strip corrupted by WiFi interrupts

Configuration of the LED driver esp_err_t ledSetup() { led_strip_config_t strip_config = { .strip_gpio_num = LED_RMT_TX_GPIO, .max_leds = LED_MAX_LENGTH, .led_pixel_format = LED_PIXEL_FORMAT_GRB, .led_model = LED_MODEL_WS2812, .flags.invert_out = false, }; led_strip_rmt_config_t rmt_config = { .clk_...
by Pixellord
Thu Aug 01, 2024 9:56 am
Forum: ESP-IDF
Topic: RMT transaction on led strip corrupted by WiFi interrupts
Replies: 8
Views: 2006

RMT transaction on led strip corrupted by WiFi interrupts

Greetings, I am working on a project in which I use RMT of ESP32S3 to transmit data on a LED strip and WiFi for LED configuration. I have observed that some of the LEDs will flicker especially when the number of connected sockets changes in WiFi driver. And the LEDs will be much more stable if WiFi ...
by Pixellord
Thu Aug 01, 2024 9:26 am
Forum: ESP-IDF
Topic: RGBW Support?
Replies: 3
Views: 986

Re: RGBW Support?

Hi,

This is the library that you can use: https://components.espressif.com/compon ... /led_strip

led_strip_config_t is where you can configure the driver to support RGBW.
by Pixellord
Mon Apr 22, 2024 10:29 am
Forum: ESP-IDF
Topic: support Wi-Fi Aware (NAN) on ESP32S3
Replies: 2
Views: 904

Re: support Wi-Fi Aware (NAN) on ESP32S3

Thanks for the reply. I am aware of the document page. But the ESP-IDF (release 5.1) and the github says differently. ESP32S3 is not supported yet. https://github.com/espressif/esp-idf/blob/v5.1/components/esp_wifi/include/esp_wifi_types.h https://github.com/espressif/esp-idf/tree/v5.1/examples/wifi...
by Pixellord
Sun Apr 21, 2024 4:19 pm
Forum: ESP-IDF
Topic: support Wi-Fi Aware (NAN) on ESP32S3
Replies: 2
Views: 904

support Wi-Fi Aware (NAN) on ESP32S3

Hi, Based on what I found in ESP-IDF 5.1.3 and 5.2.1, it seems that Wi-Fi Aware or NAN (Neighbor Awareness Networking) is only supported on ESP32 and ESP32S2. See this example: https://github.com/espressif/esp-idf/tree/release/v5.2/examples/wifi/wifi_aware/nan_publisher and the code below typedef en...
by Pixellord
Mon Jan 08, 2024 2:50 pm
Forum: ESP-IDF 中文讨论版
Topic: 大量DNS请求无法响应,导致网页加载时间太长
Replies: 0
Views: 26636

大量DNS请求无法响应,导致网页加载时间太长

我在ESP32S3上写了个小程序,让WiFi开始AP模式,然后运行REST server。我是用ESP-IDF 5.1.2写的额。这是我的Main函数 void app_main(void) { nvs_flash_init(); ESP_ERROR_CHECK(esp_netif_init()); ESP_ERROR_CHECK(esp_event_loop_create_default()); initialise_mdns(); netbiosns_init(); netbiosns_set_name(CONFIG_EXAMPLE_MDNS_HOST_NAME); wifi_init_s...
by Pixellord
Mon Jan 08, 2024 12:41 pm
Forum: ESP-IDF
Topic: extra delay when loading webpage on ESP32S3 in softAP mode
Replies: 0
Views: 25261

extra delay when loading webpage on ESP32S3 in softAP mode

I try to create an application on ESP32S3 using ESP-IDF 5.1.2 which first starts WiFi in softAP mode and then starts a REST server. I have combined the softAP example https://github.com/espressif/esp-idf/tree/master/examples/wifi/getting_started/softAP and the REST server example https://github.com/...