Search found 6 matches
- Thu May 08, 2025 10:14 am
- Forum: ESP-IDF 中文讨论版
- Topic: 为什么使用ESP32C6进行蓝牙通信,好多手机找不到设备
- Replies: 2
- Views: 309
Re: 为什么使用ESP32C6进行蓝牙通信,好多手机找不到设备
ble的话好像手机会搜不到,你下个lighblue这样的软件试试
- Wed May 07, 2025 6:10 am
- Forum: ESP-IDF 中文讨论版
- Topic: QSPI OLED使用PSRAM作为缓冲区,能否使用EDMA直接发送到QSPI主机
- Replies: 0
- Views: 173
QSPI OLED使用PSRAM作为缓冲区,能否使用EDMA直接发送到QSPI主机
我使用了一款410*502的分辨率的OLED显示器,在使用双1/6 buffer时,对内部内存的占用实在太大了,还有撕裂。有没有好的方法能把它放到外部的PSRAM,并尽可能的提高性能,我看RGB 接口 LCD能够使用外部psram申请整buffer缓冲区,并且使用EDMA降低CPU工作量,但是在QSPI这里,完全没有看到类似的选项
最近我测试后发现
lv_color_t *buf1 = heap_caps_malloc(EXAMPLE_LCD_H_RES * EXAMPLE_LVGL_BUF_HEIGHT * sizeof(lv_color_t), MALLOC_CAP_SPIRAM ...
最近我测试后发现
lv_color_t *buf1 = heap_caps_malloc(EXAMPLE_LCD_H_RES * EXAMPLE_LVGL_BUF_HEIGHT * sizeof(lv_color_t), MALLOC_CAP_SPIRAM ...
- Mon Apr 28, 2025 6:55 am
- Forum: 中文文档讨论版
- Topic: QSPI OLED使用PSRAM作为缓冲区,能否使用EDMA
- Replies: 0
- Views: 7744
QSPI OLED使用PSRAM作为缓冲区,能否使用EDMA
我使用了一款410*502的分辨率的OLED显示器,在使用双1/6 buffer时,对内部内存的占用实在太大了,还有撕裂。有没有好的方法能把它放到外部的PSRAM,并尽可能的提高性能,我看RGB 接口 LCD能够使用外部psram申请整buffer缓冲区,并且使用EDMA降低CPU工作量,但是在QSPI这里,完全没有看到类似的选项,也没法使用外部内存申请DMA buffer,所以有什么好的方法吗,我可以自己调用EDMA来创建双缓冲区发送给QSPI不
- Fri Oct 11, 2024 3:48 am
- Forum: ESP-IDF
- Topic: Interrupt wdt timeout
- Replies: 1
- Views: 1336
Re: Interrupt wdt timeout
Finally I know why this error is caused by the fact that my interrupt pin is multiplexed to a sleep pin, and every time it is multiplexed, the registers on both sides should be all initialized, otherwise some of the values in the registers have been changed, causing some errors, which took me a long ...
- Fri Oct 11, 2024 2:48 am
- Forum: ESP-IDF 中文讨论版
- Topic: gatt_server_service_table 例程中蓝牙如果添加新的service
- Replies: 0
- Views: 2134
gatt_server_service_table 例程中蓝牙如果添加新的service
各位大神们,我想在gatt_server_service_table 例程中添加多个service,根据我查到的信息来看,是要扩展一个服务创建句柄表,然后把新的表创建一下, esp_ble_gatts_create_attr_tab() 最后再使用 esp_ble_gatts_start_service() 随后在同一个回调函数中处理事件,但是我感觉是不是还可以通过PROFILE_NUM创建多个不同的回调函数,在这个函数里,感觉像是可以创建多个不同的服务回调 static void gatts_event_handler(esp_gatts_cb_event_t event, esp_gatt ...
- Wed Jan 24, 2024 5:04 pm
- Forum: ESP-IDF
- Topic: Interrupt wdt timeout
- Replies: 1
- Views: 1336
Interrupt wdt timeout
Hello everyone,
I hope this message finds you well. I am currently facing an issue with a watchdog timeout, and given my limited expertise, I am struggling to identify the root cause.
If anyone has experience with watchdog timeouts or can offer guidance on how to troubleshoot and identify the ...
I hope this message finds you well. I am currently facing an issue with a watchdog timeout, and given my limited expertise, I am struggling to identify the root cause.
If anyone has experience with watchdog timeouts or can offer guidance on how to troubleshoot and identify the ...