Search found 14 matches

by gkirill
2025-01-31 12:47
Forum: LuckFox Pico
Topic: How to encrypt flash to prevent image file is readed?
Replies: 6
Views: 1845

Re: How to encrypt flash to prevent image file is readed?

Thanks for the document, however seems to be for other chips different to the ones in the boards Pico and Lyra. I purchased both for evaluations pico max and lyra B but still unable to secure boot them and encrypt flash content. I am going to investigate how to contact your team. If possible please...
by gkirill
2024-06-14 12:44
Forum: LuckFox Pico
Topic: fatal error: alloca.h: No such file or directory
Replies: 7
Views: 2857

Re: fatal error: alloca.h: No such file or directory

Since the example is a Linux kernel module code, the alloca.h header file cannot be used. You can use the alloca.h header file in a non-kernel module application and compile it using a cross-compilation tool, as shown in the following figure:企业微信截图_1718345147386.png Thank you for the clarification,...
by gkirill
2024-06-14 3:58
Forum: LuckFox Pico
Topic: fatal error: alloca.h: No such file or directory
Replies: 7
Views: 2857

Re: fatal error: alloca.h: No such file or directory

Hello, In Linux kernel module development, alloca.h and alloca functions are usually not used, because these are dynamic memory allocation functions designed for user space. In kernel space, memory management functions provided by the kernel are usually used, such as kmalloc and kfree. Hello, Eng38...
by gkirill
2024-06-13 12:31
Forum: LuckFox Pico
Topic: fatal error: alloca.h: No such file or directory
Replies: 7
Views: 2857

fatal error: alloca.h: No such file or directory

Hello! I know that the question is stupid, but I can’t find where to declare the path to the headers that need to be connected to the project. I successfully ran the test script from the fifth point at this link https://wiki.luckfox.com/Luckfox-Pico/Luckfox-Pico-SDK , when I try to connect other hea...
by gkirill
2024-06-11 4:39
Forum: LuckFox Pico
Topic: Еxample of a program for recording video in .MP4 to SD card.
Replies: 3
Views: 1614

Re: Еxample of a program for recording video in .MP4 to SD card.

Hello, example code secondary development is not within our technical support scope. Please research and develop it on your own. Hello, Croco! Is the information contained in this document https://forums.luckfox.com/download/file.php?id=597 sufficient to write this program? In what document can I l...
by gkirill
2024-06-10 13:12
Forum: LuckFox Pico
Topic: Еxample of a program for recording video in .MP4 to SD card.
Replies: 3
Views: 1614

Еxample of a program for recording video in .MP4 to SD card.

Hello!
I saw a detailed example for rtsp at this link: https://wiki.luckfox.com/Luckfox-Pico/RKMPI-example , but I'm wondering how to record video to an SD card. Is there a similar detailed example for this somewhere?
by gkirill
2024-06-10 4:38
Forum: LuckFox Pico
Topic: ffplay and ffmpeg problems
Replies: 4
Views: 2195

Re: ffplay and ffmpeg problems

Based on the logs provided, it seems that the ffplay tool you're using is added on Buildroot, and there are no related display servers (X11 or Wayland) or other components on the Luckfox Pico device to enable the display functionality. Enabling display server-related features has not been tested, b...
by gkirill
2024-06-07 9:38
Forum: LuckFox Pico
Topic: ffplay and ffmpeg problems
Replies: 4
Views: 2195

Re: ffplay and ffmpeg problems

Regarding the log for encoding YUV to MP4 using FFmpeg, it appears that you are missing the libx264 encoder, which you can add on Buildroot. libx264 serves as a core part of the functionality. Currently, the system only prints out the information about the missing libx264. More error messages might...
by gkirill
2024-06-07 5:47
Forum: LuckFox Pico
Topic: WSL编译下载固件提示oem.img不存在
Replies: 1
Views: 38617

Re: WSL编译下载固件提示oem.img不存在

Hello, Taylor!
Is it correct to use files for flashing the controller along this path:
"\\wsl.localhost\Ubuntu-24.04\home\username\rockchip\luckfox-pico\IMAGE\(LUCKFOX_VERSION_AND_TIME)_RELEASE_TEST\IMAGES" ?
Then you can do without any substitutions.
by gkirill
2024-06-07 5:37
Forum: LuckFox Pico
Topic: ffplay and ffmpeg problems
Replies: 4
Views: 2195

ffplay and ffmpeg problems

Hello, Foxs! Following the instructions in the link https://wiki.luckfox.com/Luckfox-Pico/CSI-Camera/ , I wanted to play the resulting videos, but I get the following error from ffplay: # ffplay -video_size 2304x1296 -pixel_format nv12 -framerate 10 -i mnt/sdcard/video17.yuv //my call ffplay version...