@Ranomez
You can try compiling the source code on a 32-bit system. You may encounter some package compatibility issues.
Posts
-
RE: Coolpi Ubuntu 24.04 is coming soon!!posted in PI CM5 Laptop
-
RE: coolpi 4B 离线刷机更新android版本无法启动posted in Pi 4B
@kingpin1cn
如果机器是板载的EMMC模组,可以尝试进入UMS模式,通过ETCHER软件刷机。 -
RE: ubuntu22.04 拔掉hdmi后,桌面不启动posted in Pi 4B
@markerrors
DTS文件里边使能DSI0的节点,需要多大分辨率就配置多大,这样就可以远程登录桌面了。 -
RE: CM5使用U盘刷机失败posted in Pi CM5
@Twsuts-0
你仔细看一下我们的那个脚本,实际上思路很简单,先dd一个img镜像(大于你的FS的大小),然后把这个镜像分为2个区(一个放boot,一个放FS),再然后把镜像挂载到系统,再把系统对应分区直接复制到镜像分区,然后做一些文件系统检查的工作即可。 -
RE: no usb-c chargingposted in PI CM5 Laptop
@Momo-0
At present, PD charging only supports charging when turned on, and does not currently support charging when turned off. The protocol only supports TYPEC PD format and does not support QC standards. So you need to use an adapter with TYPEC interfaces on both ends as shown in the following figure:

-
RE: 如何进入coolpi cm5-laptop的bios设置?posted in PI CM5 Laptop
@Rock
Due to compatibility issues with USB3.0 devices, you can try booting with USB2.0 devices. -
RE: How to update coolpi-4b npu driver in ubuntu?posted in AI Algorithm
@traceback
We will update the kernel to 6.1 soon, please be patient. -
RE: Coolpi Ubuntu 24.04 is coming soon!!posted in PI CM5 Laptop
@Momo-0
The cloud storage provides a 22.04 image, which you can download and upgrade. -
RE: CM5编译xdma出现问题posted in Pi CM5
@Android2002
可以先删除boot/firmware里边的文件,然后再拷贝。注意删除前最好备份一下,否则错误的文件会导致系统无法正常启动。 -
We have been making progress!!posted in PI CM5 Laptop

5G
4K (3840*2160) LCD
One more thing, everyone guess
-
RE: Coolpi CM5-Laptop 5G module designposted in PI CM5 Laptop
Software debugging
- Can recognize the network card normally
FM160-NA
[ 209.139782] usb 6-1: new SuperSpeed Gen 1 USB device number 3 using xhci-hcd [ 209.158752] usb 6-1: LPM exit latency is zeroed, disabling LPM. [ 209.159341] usb 6-1: New USB device found, idVendor=2cb7, idProduct=0104, bcdDevice= 5.04 [ 209.159345] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 209.159348] usb 6-1: Product: Fibocom FM160 Modem_SN:A5206AEB [ 209.159351] usb 6-1: Manufacturer: Fibocom [ 209.159354] usb 6-1: SerialNumber: a5206aeb [ 209.334460] usb 6-1: GSM modem (1-port) converter now attached to ttyUSB0 [ 209.334960] usb 6-1: GSM modem (1-port) converter now attached to ttyUSB1 [ 209.335465] usb 6-1: GSM modem (1-port) converter now attached to ttyUSB2 [ 209.335869] usb 6-1: GSM modem (1-port) converter now attached to ttyUSB3 [ 209.369699] qmi_wwan 6-1:1.4 wwan0: register 'qmi_wwan' at usb-xhci-hcd.4.auto-1, WWAN/QMI device, 0e:2e:b9:55:d8:4fRM500U-CN
[ 1060.540438] usb 6-1: new SuperSpeed Gen 1 USB device number 4 using xhci-hcd [ 1060.558057] usb 6-1: New USB device found, idVendor=2c7c, idProduct=0900, bcdDevice= 4.04 [ 1060.558062] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 1060.558065] usb 6-1: Product: RM500U-CN [ 1060.558068] usb 6-1: Manufacturer: Quectel [ 1060.558071] usb 6-1: SerialNumber: 0123456789ABCDEF [ 1060.614822] cdc_ether 6-1:1.0 usb0: register 'cdc_ether' at usb-xhci-hcd.4.auto-1, CDC Ethernet Device, 4a:b9:e7:e7:04:47 -
RE: Constant noise from speakers?posted in PI CM5 Laptop
@Ranomez
This machine is the latest version of V20, and I have understood the issue you have reported:- This noise is the bottom noise of the audio codec that is amplified by the power amplifier and output. In fact, the native bottom noise is very small, which can be confirmed by inserting headphones. It's only after being amplified by the amplifier that you can hear it near the ear at the speaker end.
- To avoid this common problem, the traditional approach is to only turn on the amplifier circuit when there is audio output, and then turn off the amplifier after the audio is played. This way, the normal sound output will cover the background noise, as shown in the driver code below:
static int es8316_mute(struct snd_soc_dai *dai, int mute, int direction) { struct snd_soc_component *component = dai->component; struct es8316_priv *es8316 = snd_soc_component_get_drvdata(component); es8316->muted = mute; if (mute) { es8316_enable_spk(es8316, false); msleep(100); snd_soc_component_write(component, ES8316_DAC_SET1_REG30, 0x20); } else { snd_soc_component_write(component, ES8316_DAC_SET1_REG30, 0x00); msleep(130); if (!es8316->hp_inserted) es8316_enable_spk(es8316, true); } return 0; }- Your current operating method is to only turn on the amplifier without normal audio data output, which is equivalent to the amplifier only amplifying background noise data. So what the speaker hears is the amplified background noise. The current situation I have tested here is that the ear needs to be close to the speaker to hear, which cannot be heard in normal usage scenarios.
- Later, we will try to adjust the gain configuration of the amplifier at the driver end, hoping to reduce the amplitude of this noise, but it is unrealistic to completely eliminate it.