ZhouKe
ZhouKe
这个网卡做ap不太好用,只能选5g,legacy模式,做了ap也只有54m的速度
I think your code is generated by NXP GUI Guider, the widget 'carousel' is in NXP's LVGL Library, not in the original LVGL; You can copy it to your projects....
I noticed that your buscfg.data1_io_num and ioconfig.cs_gpio_num are the same pin, maybe that's the reason. In addition, can you open the console to see the output log after the device...
> atoms3r这种小屏幕会怎样? 宽度低于150的屏幕效果不会很好,圆形屏幕也不好,所以这种显示方式只是做成了一个可选项,默认是n。 @78
其实bread-compact-wifi-lcd并没有包含任何屏幕的驱动,它只是整合了各种屏幕驱动的接。 @78
后来测试其它一些屏幕发现,有些屏幕的swap_bytes需要设置成0,有些需要设置成1,如果要抽出一个common,这个参数需要做成可配置。
我认为idf的esp_lcd_panel已经做得挺好了。我倒是认为LcdDisplay传入的参数太多了,这些参数大多和具体硬件有关,而且大多用在了lvgl_port_display_cfg_t上,不如从Board直接传入lvgl_port_display_cfg_t,把和硬件差异有关的代码都留在Board对应的代码里。 @78
我来bread-compact-wifi-lcd里增加,顺便修改后来发现的一些问题, @78
@78 lottie占用的任务栈很大,确实可能影响其它任务的执行。 @qaz624824554 是不是任务栈不能使用PSRAM?
在ESP的文档里看到这样一句话 :Note that because FreeRTOS stacks are forced to internal memory @78 @qaz624824554