Search found 57 matches

by Ryand
2025-02-05 6:06
Forum: LuckFox Pico
Topic: 我想知道怎么更改cpu的主频
Replies: 5
Views: 361

Re: 我想知道怎么更改cpu的主频

时钟频率以Rockchip 官方提供的设备树示例为准,降低CPU主频导致分频下去的其他模块可能无法获取到满足工作的时钟频率,我们的供电方案是DC-DC没有使用pmu所以电压是无法调整的;修改设备树设置时钟频率仅能用于测试,实际使用上降低频率并不能降低功耗,没有什么实际意义
by Ryand
2025-02-05 3:55
Forum: LuckFox Pico
Topic: Configure WIFI module as AP for 60 seconds, and then switch to STA
Replies: 1
Views: 10

Re: Configure WIFI module as AP for 60 seconds, and then switch to STA

This idea is feasible. 1.You can create a separate configuration file, such as/etc/wpa_supplementant.ap.conf,with the following content: ctrl_interface=DIR=/var/run/wpa_supplicant ap_scan=1 network={ ssid="YourAPSSID" mode=2 frequency=2412 key_mgmt=NONE } Here mode=2 means creating an AP, ...
by Ryand
2025-01-24 12:22
Forum: LuckFox Pico
Topic: Luckfox Pico Ultra W Zbar installation
Replies: 5
Views: 291

Re: Luckfox Pico Ultra W Zbar installation

You can add a QR code function to main.cc to decode the image, and then call it after the main loop acquires the vi frame.
by Ryand
2025-01-24 8:08
Forum: LuckFox Pico
Topic: pico max / How to include libpthread.so into buildroot image ?
Replies: 2
Views: 230

Re: pico max / How to include libpthread.so into buildroot image ?

You need to cross compile the uclibc version of libpthread.so, transfer the file to/usr/lib on the buildroot system, and do not need to modify the c lib supported by the system.
by Ryand
2025-01-24 7:51
Forum: LuckFox Pico
Topic: Luckfox Pico Ultra W Zbar installation
Replies: 5
Views: 291

Re: Luckfox Pico Ultra W Zbar installation

I have observed that your process does not seem to have configured a cross compilation environment for the zbar library. From the error message 'file format not recognized', I think this is a high possibility.
by Ryand
2025-01-24 7:21
Forum: LuckFox Pico
Topic: What is the Core1106 wifi chip ?
Replies: 1
Views: 159

Re: What is the Core1106 wifi chip ?

The chip model is SKI WB800DCS.2, The schematic diagram is as follows:
Snipaste_2025-01-24_14-05-00.png
Schematic diagram link:https://files.luckfox.com/wiki/Luckfox- ... ra%20W.pdf
by Ryand
2025-01-24 7:08
Forum: LuckFox Pico
Topic: 我想知道怎么更改cpu的主频
Replies: 5
Views: 361

Re: 我想知道怎么更改cpu的主频

直接根据上面介绍修改设备树就行
by Ryand
2025-01-24 6:26
Forum: LuckFox Pico
Topic: RV1106 ultra W 开发板能否做一个开机提示 ,按下复位后8S后才能看到屏幕亮起来,不熟悉的还以为开不了机呢
Replies: 3
Views: 284

Re: RV1106 ultra W 开发板能否做一个开机提示 ,按下复位后8S后才能看到屏幕亮起来,不熟悉的还以为开不了机呢

开机慢应该是rootfs启动开启了比较复杂的软件,比如samba,可以不启用启动脚本S91smb中。
如果需要换开机指示,可以编写驱动到内核里实现。
by Ryand
2025-01-24 4:05
Forum: LuckFox Pico
Topic: Luckfox Pico Ultra
Replies: 1
Views: 298

Re: Luckfox Pico Ultra

有两种方法推荐,但都需要重新在SDK中编译或者打包镜像 方法一: 比如你在/etc下加了一个系统文件,可以把这个文件复制到/luckfox-pico/project/cfg/Boardconfig IPc/overlay里,可以加个文件夹存放你的备份文件,同时再相应的SDK配置文件中添加然后打包,再重新烧录。 cd /luckfox-pico/project/cfg/Boardconfig IPc/overlay ls overlay-buildroot-npc WXWorkCapture_17351951396025.png WXWorkCapture_17376902044429.png ...