@spartan50416 Sorry, to clarify, the method of making our startup disk is the same as the raspberry pie, not the firmware. Of course, the main difference is in the kernel part. If you are interested in porting the raspberry pie file system to CP4, there is no problem. You can use the PWM interface to adjust the fan speed. Our DTS configuration already supports this. The 2X20 expansion port has multiple PWM interfaces.
Posts made by george
-
RE: Cool Pi 4B on Desk-Pi Pro Case
-
RE: Cool Pi 4B on Desk-Pi Pro Case
@spartan50416 I think there is no problem implementing the functionality in the link. If you have any questions during the modification, you can post them in the community and we will respond in a timely manner. We believe that using our machine modifications can achieve better performance.
-
RE: Cool Pi 4B on Desk-Pi Pro Case
@spartan50416 As shown in the figure below, the CP4 can have a separate fan heat sink, with EMMC, TF-card, and USB interfaces stored. The USB 3.0 interface can expand SSDs or mechanical hard disks. The machine has independent on-off buttons, which can be customized by modifying software, or external keyboards can be extended through the ADC interface. Firmware upgrades are the same as raspberry pi. You can use the balena Etcher tool to create a startup disk, and the startup media can be a TF card, a USB flash drive, or an EMMC.
-
RE: HDMI display 綠屏
@tonyone0902 显示异常的时候,打印一下下面两个命令,结果发上来:
sudo cat /sys/kernel/debug/dri/0/summary
sudo cat /sys/kernel/debug/dw-hdmi0/status -
coolpi is a cool computer
The CM5-evb board has two native eDP interfaces, designed according to the standard 30PIN eDP interface, and can directly drive an eDP LCD without any conversion. Interface integrated backlight control circuit. LCD backlight brightness adjustment can be achieved.
-
RE: Type c power port
@lej40 said in Type c power port:
Is the the type-c PD port also a USB-c data port
Sorry,This port is used for power supply and has no data connection.
-
RE: 是否可以 3顆 18650 並聯輸出電到 typeC USB 充電孔?
@tonyone0902 如下图所示,板子的BOTTOM面有测试点,可以焊接外部电源。
机器本身不具备电量侦测功能,可以外加库仑计通过I2C接口。 -
RE: 是否可以 3顆 18650 並聯輸出電到 typeC USB 充電孔?
@tonyone0902 最低输入电压5V,所以并联是不行的,串联12V从TYPEC输入没有问题。
-
CM5-EVB Commissioning Description
-
Product image
-
All interface functions have been debugged and are currently undergoing performance optimization.
-
It is expected to be sold normally in early April.
-
-
RE: 官网源码不支持树莓派官方最新摄像头IMX477R和IMX708
@xingzhan2012 摄像头的调试周期会比较长,做AI部分对摄像头像素要求不会太高,可以考虑先使用USB接口的摄像头模组。
-
RE: Cool Pi 4B 如何使用GPIO啊,树莓派的HQ Camera如何使用呢?
@xingzhan2012 摄像头可以使用gstreamer。默认的镜像里边已经支持。
USB摄像头预览,参数根据自己设备的情况修改:gst-launch-1.0 v4l2src device=/dev/video20 ! image/jpeg, width=1920, height=1080, framerate=25/1 ! jpegparse ! mppjpegdec ! kmssink plane-id=88
摄像头编码:
gst-launch-1.0 v4l2src device=/dev/video11 ! video/x-raw,format=NV12 ! mpph264enc ! h264parse ! filesink location=1.h264 -e
注意:默认的mipi摄像头对应的video11节点,USB摄像头对应的video20.
-
RE: 双4K usb摄像头
@jugg QT调用gstreamer的例子网上有很多,QT官方也有教程。先尝试一下。注意KMSSINK虽然性能比较好,但是会独占图层。开发的时候注意下。
-
RE: Coolpi 4B ubuntu support
gst-launch-1.0 v4l2src device=/dev/video20 ! image/jpeg, width=3840, height=2160, framerate=30/1 ! jpegparse ! mppjpegdec ! videoconvert ! fpsdisplaysink sync=false signal-fps-measurements=true sync=false