搞个python上去吧
离线
我去f1c200性能差这么多,新版的保资用ssd201也可以直接进系统,编了个lvgl性能
测试,能到150帧,10倍性能,就是可用ram不大,连网后就只有9m
离线
@DDER
上面分享的tina3.5 sdk遇到屏幕抖动的问题,可以试试修改lichee/linux-3.10/drivers/video/sunxi/disp/disp/de/lowlevel_v1x/de_layer.c文件DE_BE_Layer_Set_Screen_Win函数,供参考
__s32 DE_BE_Layer_Set_Screen_Win(__u32 sel, __u8 layidx, disp_window *win)
{
__u32 tmp;
if (win->width == 0 || win->height == 0) {
printk("ERROR,%s:%d w,h=[%d,%d]\n", __FUNCTION__, __LINE__, win->width, win->height);
} else {
tmp = ((((__u32) (win->y)) >> 31) << 31) |
((((__u32) (win->y)) & 0x7fff) << 16) |
((((__u32) (win->x)) >> 31) << 15) | (((__u32) (win->x)) & 0x7fff);
DE_BE_WUINT32IDX(sel, DE_BE_LAYER_CRD_CTL_OFF, layidx, tmp);
DE_BE_WUINT32IDX(sel, DE_BE_LAYER_SIZE_OFF,
layidx, (win->height - 1) << 16 | (win->width - 1));
}
return 0;
}离线
屏幕边角有红色会不会是系统问题呢?
离线
屏幕边角有红色会不会是系统问题呢?
不是,液晶老化。
离线
去年买了三块,48/块,结果都是老化很严重的
离线
还有吗
离线
@18578292200
可以添加图片和视频到/mnt/UDISK/bloziplayer 文件夹,配置/mnt/UDISK/bloziplayer/bloziplayer.json来控制播放内容
默认是这个:
{"code":0,"data":[{"type":"video","label":"video","time":0,"area":{"left":0,"top":0,"width":800,"height":800},"files":[{"name":"blozi-800-800.mp4","md5":"9746fc6bc53e0cf5f1c475905e193b15"}]},{"type":"img","label":"tag","time":0,"area":{"left":0,"top":800,"width":800,"height":480},"files":[{"name":"tag-5000001054-1629347081.png","md5":"b9441367c35d85189d5e2c23cf377453"}]}],"type":"2"}
修改/etc/wifi/wpa_supplicant.conf里面的热点名称和密码连接WIFI
wpa_supplicant.conf文件我看了/etc目录里面,wifi里面没有,
离线
本来/etc/wifi/wpa_supplicant.conf中是没有network字段的,我自己添加的:
network={ ssid="troyself-wifi" psk="xxx" //已经更改为自己的wifi密码 key_mgmt=WPA-PSK priority=1 }
搞定了吗?我没有搞出来
离线

热点连接不上,那位大佬看看
修改了以下2个文件,还是无法连接网络
/etc/prole.d/bloziplayer.sh
/etc/wpa_supplicant.conf
离线