<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[PINE64 - General Discussion on ROCKPRO64]]></title>
		<link>https://forum.pine64.org/</link>
		<description><![CDATA[PINE64 - https://forum.pine64.org]]></description>
		<pubDate>Tue, 12 May 2026 06:38:01 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[installed devuan 5/6 - missing out on resolution]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20196</link>
			<pubDate>Fri, 20 Feb 2026 17:36:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=15094">kapqa</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20196</guid>
			<description><![CDATA[Hello ,<br />
<br />
hjae installed Devuan 5/6 on a newly acquired RockPro64 -<br />
very pleased overall with the system<br />
<br />
<a href="https://devuan.bio.lmu.de/devuan/dists/daedalus/main/installer-arm64/current/images/netboot/SD-card-images/" target="_blank" rel="noopener" class="mycode_url">https://devuan.bio.lmu.de/devuan/dists/d...rd-images/</a><br />
<a href="https://devuan.bio.lmu.de/devuan/dists/excalibur/main/installer-arm64/current/images/netboot/SD-card-images" target="_blank" rel="noopener" class="mycode_url">https://devuan.bio.lmu.de/devuan/dists/e...ard-images</a><br />
<br />
however iam missing out on resolutions,<br />
since xrandr is reporting only resolutions on 16:9 format, however my monitor are mostly in 16:10;<br />
<br />
do i need additional driver or firmware?<br />
<br />
devuan is a derivative of debian, so devuan 5 iscorresponding to debian 12<br />
devuan 6 to debian 13 trixie roughly.<br />
<br />
<br />
<br />
thank you very much.]]></description>
			<content:encoded><![CDATA[Hello ,<br />
<br />
hjae installed Devuan 5/6 on a newly acquired RockPro64 -<br />
very pleased overall with the system<br />
<br />
<a href="https://devuan.bio.lmu.de/devuan/dists/daedalus/main/installer-arm64/current/images/netboot/SD-card-images/" target="_blank" rel="noopener" class="mycode_url">https://devuan.bio.lmu.de/devuan/dists/d...rd-images/</a><br />
<a href="https://devuan.bio.lmu.de/devuan/dists/excalibur/main/installer-arm64/current/images/netboot/SD-card-images" target="_blank" rel="noopener" class="mycode_url">https://devuan.bio.lmu.de/devuan/dists/e...ard-images</a><br />
<br />
however iam missing out on resolutions,<br />
since xrandr is reporting only resolutions on 16:9 format, however my monitor are mostly in 16:10;<br />
<br />
do i need additional driver or firmware?<br />
<br />
devuan is a derivative of debian, so devuan 5 iscorresponding to debian 12<br />
devuan 6 to debian 13 trixie roughly.<br />
<br />
<br />
<br />
thank you very much.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[(real) Mainline U-boot finally works on SPI, boots SATA, throw away your SD cards NOW]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19868</link>
			<pubDate>Sat, 21 Jun 2025 12:21:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=11999">aleksei</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19868</guid>
			<description><![CDATA[This is on Arch ARM* or Manjaro installed on RP64. If compiling on amd64 machine, set CROSS_COMPILE variables accordingly.<br />
<br />
<br />
Build ATF:<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>git clone --depth=1 -b v2.13.0 https://github.com/ARM-software/arm-trusted-firmware.git<br />
make -j &#36;(nproc) CC=gcc PLAT=rk3399 bl31</code></div></div>Build U-boot:<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>git clone --depth=1 -b v2025.04 https://source.denx.de/u-boot/u-boot.git<br />
export BL31=/path/to/built/bl31.elf<br />
make mrproper &amp;&amp; make rockpro64-rk3399_defconfig<br />
make menuconfig</code></div></div>Here are the changed variables in .config, but don't just copy them to your .config - search for them in menuconfig and change there, the menu will take care of dependencies.<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>CONFIG_BOOTDELAY=20<br />
CONFIG_BOOTCOMMAND="bootflow scan -lbm"<br />
CONFIG_CMD_ERASEENV=y<br />
CONFIG_CMD_NVEDIT_LOAD=y<br />
CONFIG_NO_NET=y<br />
CONFIG_BAUDRATE=115200<br />
CONFIG_USE_PREBOOT=y<br />
CONFIG_PREBOOT="usb start"<br />
CONFIG_PREBOOT_DEFINED=y<br />
<br />
make -j &#36;(nproc)</code></div></div>Writing to SD card first to test it (from doc/README.rockchip in U-boot source, "Option 3: Package the image with TPL"):<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>dd if=idbloader.img of=/dev/sdX seek=64<br />
dd if=u-boot.itb of=/dev/sdX seek=16384<br />
sync</code></div></div><br />
<br />
Flashing to SPI is much simpler nowadays, see doc/board/rockchip/rockchip.rst in U-boot source. Create a partition with FAT filesystem on the same SD card, place u-boot-rockchip-spi.bin on it, reboot, get to U-boot cmdline and:<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sf probe<br />
load mmc 1:1 &#36;kernel_addr_r u-boot-rockchip-spi.bin<br />
sf update &#36;fileaddr 0 &#36;filesize</code></div></div>If sf probe returns an error or booting from SPI fails, short pins 23 and 25 on GPIO to temporarily disable SPI. After booting disconnect them again and erase SPI to at least get SD boot working.<br />
<br />
<br />
<br />
<br />
U-boot environment section on SPI might be empty, broken or contain wrong variables. To get default environment for installed version of U-boot, remove situational partitions variable and save the environment to SPI, run in U-boot cmdline:<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>env default -a<br />
env delete partitions<br />
env save</code></div></div><br />
<br />
Then create EFI partition on SATA disk and proceed like with a regular UEFI machine. U-boot from SPI will also scan SATA partitions for extlinux/extlinux.conf, boot.scr and other U-boot-specific boot configs.<br />
<br />
<br />
<br />
* On Arch, pacman -U these 3 pkgs from Manjaro (choose a mirror close to you) to build ATF:<br />
<br />
<br />
<br />
<br />
<a href="https://mirror.truenetwork.ru/manjaro/arm-stable/extra/aarch64/arm-none-eabi-newlib-4.2.0.20211231-1-any.pkg.tar.zst" target="_blank" rel="noopener" class="mycode_url">https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst</a><br />
<br />
<br />
<a href="https://mirror.truenetwork.ru/manjaro/arm-stable/extra/aarch64/arm-none-eabi-gcc-12.1.0-1-aarch64.pkg.tar.zst" target="_blank" rel="noopener" class="mycode_url">https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst</a><br />
<br />
<br />
<br />
<a href="https://mirror.truenetwork.ru/manjaro/arm-stable/extra/aarch64/arm-none-eabi-binutils-2.38-1-aarch64.pkg.tar.zst" target="_blank" rel="noopener" class="mycode_url">https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst</a><br />
<br />
<br />
<br />
PS Screw this forum software inserting copious newlines on every press of preview button.]]></description>
			<content:encoded><![CDATA[This is on Arch ARM* or Manjaro installed on RP64. If compiling on amd64 machine, set CROSS_COMPILE variables accordingly.<br />
<br />
<br />
Build ATF:<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>git clone --depth=1 -b v2.13.0 https://github.com/ARM-software/arm-trusted-firmware.git<br />
make -j &#36;(nproc) CC=gcc PLAT=rk3399 bl31</code></div></div>Build U-boot:<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>git clone --depth=1 -b v2025.04 https://source.denx.de/u-boot/u-boot.git<br />
export BL31=/path/to/built/bl31.elf<br />
make mrproper &amp;&amp; make rockpro64-rk3399_defconfig<br />
make menuconfig</code></div></div>Here are the changed variables in .config, but don't just copy them to your .config - search for them in menuconfig and change there, the menu will take care of dependencies.<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>CONFIG_BOOTDELAY=20<br />
CONFIG_BOOTCOMMAND="bootflow scan -lbm"<br />
CONFIG_CMD_ERASEENV=y<br />
CONFIG_CMD_NVEDIT_LOAD=y<br />
CONFIG_NO_NET=y<br />
CONFIG_BAUDRATE=115200<br />
CONFIG_USE_PREBOOT=y<br />
CONFIG_PREBOOT="usb start"<br />
CONFIG_PREBOOT_DEFINED=y<br />
<br />
make -j &#36;(nproc)</code></div></div>Writing to SD card first to test it (from doc/README.rockchip in U-boot source, "Option 3: Package the image with TPL"):<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>dd if=idbloader.img of=/dev/sdX seek=64<br />
dd if=u-boot.itb of=/dev/sdX seek=16384<br />
sync</code></div></div><br />
<br />
Flashing to SPI is much simpler nowadays, see doc/board/rockchip/rockchip.rst in U-boot source. Create a partition with FAT filesystem on the same SD card, place u-boot-rockchip-spi.bin on it, reboot, get to U-boot cmdline and:<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sf probe<br />
load mmc 1:1 &#36;kernel_addr_r u-boot-rockchip-spi.bin<br />
sf update &#36;fileaddr 0 &#36;filesize</code></div></div>If sf probe returns an error or booting from SPI fails, short pins 23 and 25 on GPIO to temporarily disable SPI. After booting disconnect them again and erase SPI to at least get SD boot working.<br />
<br />
<br />
<br />
<br />
U-boot environment section on SPI might be empty, broken or contain wrong variables. To get default environment for installed version of U-boot, remove situational partitions variable and save the environment to SPI, run in U-boot cmdline:<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>env default -a<br />
env delete partitions<br />
env save</code></div></div><br />
<br />
Then create EFI partition on SATA disk and proceed like with a regular UEFI machine. U-boot from SPI will also scan SATA partitions for extlinux/extlinux.conf, boot.scr and other U-boot-specific boot configs.<br />
<br />
<br />
<br />
* On Arch, pacman -U these 3 pkgs from Manjaro (choose a mirror close to you) to build ATF:<br />
<br />
<br />
<br />
<br />
<a href="https://mirror.truenetwork.ru/manjaro/arm-stable/extra/aarch64/arm-none-eabi-newlib-4.2.0.20211231-1-any.pkg.tar.zst" target="_blank" rel="noopener" class="mycode_url">https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst</a><br />
<br />
<br />
<a href="https://mirror.truenetwork.ru/manjaro/arm-stable/extra/aarch64/arm-none-eabi-gcc-12.1.0-1-aarch64.pkg.tar.zst" target="_blank" rel="noopener" class="mycode_url">https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst</a><br />
<br />
<br />
<br />
<a href="https://mirror.truenetwork.ru/manjaro/arm-stable/extra/aarch64/arm-none-eabi-binutils-2.38-1-aarch64.pkg.tar.zst" target="_blank" rel="noopener" class="mycode_url">https://mirror.truenetwork.ru/manjaro/ar...kg.tar.zst</a><br />
<br />
<br />
<br />
PS Screw this forum software inserting copious newlines on every press of preview button.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[where to get debian 12 image for rockpro64?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19836</link>
			<pubDate>Sun, 18 May 2025 16:35:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=9045">heocb</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19836</guid>
			<description><![CDATA[Where do you get a debian 12 image for the rockpro64? Thanks.]]></description>
			<content:encoded><![CDATA[Where do you get a debian 12 image for the rockpro64? Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Need help with spi incircuit programming]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19776</link>
			<pubDate>Thu, 03 Apr 2025 18:40:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=29102">wofei</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19776</guid>
			<description><![CDATA[Hi@all<br />
I have a rockpro64 V2.1 board with no reaction. Neither serial output, nor any blinking leds after power on. Now i want to flash the u-boot to to the spi chip for trying to boot from usb. Unfortunatley, the sd- and the emmc ports are not available, fixed with glue. (the rockpro is build in a test equipment for cars, bought 4 years ago from my cousin for about 4000 euros, these days was the first try, but this thing is dead, warranty is over and repair from the reseller is not possible)<br />
Is there a way to flash the spi in circuit with the available *-img files? I can read and write the spi chip with my raspberry, but i can´t find a rom file, only img files..<br />
thanks, wofei]]></description>
			<content:encoded><![CDATA[Hi@all<br />
I have a rockpro64 V2.1 board with no reaction. Neither serial output, nor any blinking leds after power on. Now i want to flash the u-boot to to the spi chip for trying to boot from usb. Unfortunatley, the sd- and the emmc ports are not available, fixed with glue. (the rockpro is build in a test equipment for cars, bought 4 years ago from my cousin for about 4000 euros, these days was the first try, but this thing is dead, warranty is over and repair from the reseller is not possible)<br />
Is there a way to flash the spi in circuit with the available *-img files? I can read and write the spi chip with my raspberry, but i can´t find a rom file, only img files..<br />
thanks, wofei]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Use android on RockPro64 without a LCD screen ?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19764</link>
			<pubDate>Sat, 29 Mar 2025 05:15:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=17768">john_nash</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19764</guid>
			<description><![CDATA[I see there are Android images here <a href="https://wiki.pine64.org/wiki/ROCKPro64_Software_Releases#Android" target="_blank" rel="noopener" class="mycode_url">https://wiki.pine64.org/wiki/ROCKPro64_S...es#Android</a><br />
But I don't have a LCD screen. Anyway I can use it without one ? I wish to control it from my PC, through <a href="https://github.com/Genymobile/scrcpy" target="_blank" rel="noopener" class="mycode_url">scrcpy</a> program. But this program need Android to enable usb debugging. Which again need LCD to enable manually.]]></description>
			<content:encoded><![CDATA[I see there are Android images here <a href="https://wiki.pine64.org/wiki/ROCKPro64_Software_Releases#Android" target="_blank" rel="noopener" class="mycode_url">https://wiki.pine64.org/wiki/ROCKPro64_S...es#Android</a><br />
But I don't have a LCD screen. Anyway I can use it without one ? I wish to control it from my PC, through <a href="https://github.com/Genymobile/scrcpy" target="_blank" rel="noopener" class="mycode_url">scrcpy</a> program. But this program need Android to enable usb debugging. Which again need LCD to enable manually.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Rock Pro 64 Won't power on]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19730</link>
			<pubDate>Tue, 11 Mar 2025 21:49:12 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=29032">matthewmkr</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19730</guid>
			<description><![CDATA[My board won't power on. No video. Nothing with serial either. Is this thing bricked, and is there any way to recover it. I've tried the SPI flash from <a href="https://github.com/ayufan-rock64/linux-build/blob/master/recipes/flash-spi.md" target="_blank" rel="noopener" class="mycode_url">https://github.com/ayufan-rock64/linux-b...ash-spi.md</a> , but it won't power on, so I doubt it's doing anything.<br />
<br />
Tried following this advice as well and still nada <a href="https://www.reddit.com/r/PINE64official/comments/jx8waz/rockpro64_wont_boot_emmc_or_usd/" target="_blank" rel="noopener" class="mycode_url">https://www.reddit.com/r/PINE64official/...mc_or_usd/</a><br />
<br />
<br />
Video of symptoms: <a href="https://youtube.com/shorts/jDHW6B4bH5g?feature=share" target="_blank" rel="noopener" class="mycode_url">https://youtube.com/shorts/jDHW6B4bH5g?feature=share</a>]]></description>
			<content:encoded><![CDATA[My board won't power on. No video. Nothing with serial either. Is this thing bricked, and is there any way to recover it. I've tried the SPI flash from <a href="https://github.com/ayufan-rock64/linux-build/blob/master/recipes/flash-spi.md" target="_blank" rel="noopener" class="mycode_url">https://github.com/ayufan-rock64/linux-b...ash-spi.md</a> , but it won't power on, so I doubt it's doing anything.<br />
<br />
Tried following this advice as well and still nada <a href="https://www.reddit.com/r/PINE64official/comments/jx8waz/rockpro64_wont_boot_emmc_or_usd/" target="_blank" rel="noopener" class="mycode_url">https://www.reddit.com/r/PINE64official/...mc_or_usd/</a><br />
<br />
<br />
Video of symptoms: <a href="https://youtube.com/shorts/jDHW6B4bH5g?feature=share" target="_blank" rel="noopener" class="mycode_url">https://youtube.com/shorts/jDHW6B4bH5g?feature=share</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to use ROCKPro64 PCI-e X4 to M.2/NGFF NVMe SSD Interface Card]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19527</link>
			<pubDate>Sat, 23 Nov 2024 14:15:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=8018">jykeith123</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19527</guid>
			<description><![CDATA[<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">I connected a PCI NVMe adapter to the RockPro64, but nothing is added to </span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/dev/sd*</code></div></div><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"> or </span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/dev/nvme*</code></div></div><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">. The products I tested are as follows:</span></span><br />
<br />
<br />
<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">PM9A1 500GB</span></span></span></span><br />
<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">FireCuda530 2TB</span></span></span></span></span></span><br />
<br />
<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">What could be the problem?</span></span><br />
<br />
os : Armbian_24.5.1_Rockpro64_noble_current_6.6.31]]></description>
			<content:encoded><![CDATA[<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">I connected a PCI NVMe adapter to the RockPro64, but nothing is added to </span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/dev/sd*</code></div></div><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"> or </span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/dev/nvme*</code></div></div><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">. The products I tested are as follows:</span></span><br />
<br />
<br />
<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">PM9A1 500GB</span></span></span></span><br />
<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font"><span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">FireCuda530 2TB</span></span></span></span></span></span><br />
<br />
<span style="color: #0d0d0d;" class="mycode_color"><span style="font-family: Segoe UI Variable Text', ui-sans-serif, -apple-system, system-ui, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol;" class="mycode_font">What could be the problem?</span></span><br />
<br />
os : Armbian_24.5.1_Rockpro64_noble_current_6.6.31]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[No HDMI Video - Anything To Check?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19433</link>
			<pubDate>Wed, 25 Sep 2024 10:58:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=28532">angrymallard</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19433</guid>
			<description><![CDATA[Hello all, I am working on a RockPro64 that seems to have a non-functional HDMI output but I'm trying to see if there's anything else for me to check before I RMA the unit. Everything else seems to be working, for example I can load the minimal Armbian image to it, boot it, and then SSH into it and see that the computer itself is working. But at no point is there ever any video output. There's no boot screen visible either. I've tried two different HDMI cables on two different monitors, confirmed these cables/monitors work with other devices, tried to hook up a USB-C hub, etc.<br />
<br />
I've tried a few other images as well, LibreELEC (originally I planned for this to be a media center so this was the first one I tried), a few different Armbian images including the XFCE Debian 12 version, the Cinnamon Debian 12 version, the Ubuntu Gnome version, and DietPi. I can't verify that any of these work, although I am pretty certain that these have SSH access disabled by default and without video there's no way for me to enable that to check on these distributions. I also used the "flash_spi" image here <a href="https://github.com/sigmaris/u-boot/wiki/Flashing-U-Boot-to-SPI" target="_blank" rel="noopener" class="mycode_url">https://github.com/sigmaris/u-boot/wiki/...oot-to-SPI</a> to make sure that was working properly.<br />
<br />
I also tried to add the kernel module from this guide <a href="https://wiki.pine64.org/wiki/ROCKPro64#No_Video_or_GPU_Acceleration_on_Debian" target="_blank" rel="noopener" class="mycode_url">https://wiki.pine64.org/wiki/ROCKPro64#N..._on_Debian</a> but it seems like my problem is happening before the kernel loads since there's no video output at all when it boots in the first place. <br />
<br />
Since I can boot and SSH into the minimal Armbian install, is there anything I should check before I send this unit back? I don't currently have a serial cable but hope that since I can SSH into a terminal I won't need one for looking around at anything.]]></description>
			<content:encoded><![CDATA[Hello all, I am working on a RockPro64 that seems to have a non-functional HDMI output but I'm trying to see if there's anything else for me to check before I RMA the unit. Everything else seems to be working, for example I can load the minimal Armbian image to it, boot it, and then SSH into it and see that the computer itself is working. But at no point is there ever any video output. There's no boot screen visible either. I've tried two different HDMI cables on two different monitors, confirmed these cables/monitors work with other devices, tried to hook up a USB-C hub, etc.<br />
<br />
I've tried a few other images as well, LibreELEC (originally I planned for this to be a media center so this was the first one I tried), a few different Armbian images including the XFCE Debian 12 version, the Cinnamon Debian 12 version, the Ubuntu Gnome version, and DietPi. I can't verify that any of these work, although I am pretty certain that these have SSH access disabled by default and without video there's no way for me to enable that to check on these distributions. I also used the "flash_spi" image here <a href="https://github.com/sigmaris/u-boot/wiki/Flashing-U-Boot-to-SPI" target="_blank" rel="noopener" class="mycode_url">https://github.com/sigmaris/u-boot/wiki/...oot-to-SPI</a> to make sure that was working properly.<br />
<br />
I also tried to add the kernel module from this guide <a href="https://wiki.pine64.org/wiki/ROCKPro64#No_Video_or_GPU_Acceleration_on_Debian" target="_blank" rel="noopener" class="mycode_url">https://wiki.pine64.org/wiki/ROCKPro64#N..._on_Debian</a> but it seems like my problem is happening before the kernel loads since there's no video output at all when it boots in the first place. <br />
<br />
Since I can boot and SSH into the minimal Armbian install, is there anything I should check before I send this unit back? I don't currently have a serial cable but hope that since I can SSH into a terminal I won't need one for looking around at anything.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[power button not working]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19212</link>
			<pubDate>Wed, 08 May 2024 05:26:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=28161">Vista8720</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19212</guid>
			<description><![CDATA[my power button does not turn off my rockpro64 anymore - i need to unplug to turn off.  the unit is only a few weeks old.  how can i troubleshoot this?<br />
thanks]]></description>
			<content:encoded><![CDATA[my power button does not turn off my rockpro64 anymore - i need to unplug to turn off.  the unit is only a few weeks old.  how can i troubleshoot this?<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Installing Wifi drive for the RockPro64]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19051</link>
			<pubDate>Sun, 11 Feb 2024 05:32:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26093">John45595</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19051</guid>
			<description><![CDATA[I am trying to install Debian on the RockPro64 and I am having trouble getting the wifi drivers to be recognized by the installer. Without these I can not finish installing the OS.<br />
<br />
At present I have tried formatting a USB stick to FAT32 and adding the files from <a href="http://ftp.debian.org/debian/pool/non-free-firmware/f/firmware-nonfree/firmware-brcm80211_20230625-2_all.deb" target="_blank" rel="noopener" class="mycode_url">here</a> to a folder named "firmware" on the USB stick however the installer can not identify these files and keeps throwing an error stating the following files are missing:<br />
<br />
brim/brcmfmac43455-sdio.bin<br />
brim/brcmfmac43455-sdio.pine64,rockpro64-v2.1.bin<br />
<br />
I can't install the OS without getting the wifi working so I am not entirely sure how to go about rectifying this problem. Does anyone have any suggestions? Should I be using a different OS? Is it a requirement to have a wired internet connection when you first install Debian?<br />
<br />
If there are no other options I can go somewhere with a wired connection and install the OS and try and get the wifi firmware installed once the OS is already installed however I would like to avoid that if possible.]]></description>
			<content:encoded><![CDATA[I am trying to install Debian on the RockPro64 and I am having trouble getting the wifi drivers to be recognized by the installer. Without these I can not finish installing the OS.<br />
<br />
At present I have tried formatting a USB stick to FAT32 and adding the files from <a href="http://ftp.debian.org/debian/pool/non-free-firmware/f/firmware-nonfree/firmware-brcm80211_20230625-2_all.deb" target="_blank" rel="noopener" class="mycode_url">here</a> to a folder named "firmware" on the USB stick however the installer can not identify these files and keeps throwing an error stating the following files are missing:<br />
<br />
brim/brcmfmac43455-sdio.bin<br />
brim/brcmfmac43455-sdio.pine64,rockpro64-v2.1.bin<br />
<br />
I can't install the OS without getting the wifi working so I am not entirely sure how to go about rectifying this problem. Does anyone have any suggestions? Should I be using a different OS? Is it a requirement to have a wired internet connection when you first install Debian?<br />
<br />
If there are no other options I can go somewhere with a wired connection and install the OS and try and get the wifi firmware installed once the OS is already installed however I would like to avoid that if possible.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Another Fan Question]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19034</link>
			<pubDate>Fri, 02 Feb 2024 14:32:43 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=27835">backwoodstech2</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19034</guid>
			<description><![CDATA[I recently purchased an 80mm Noctua NF-A8 ULN fan for the Rock NAS case along with a Noctua 2pin to 3pin adaptor. Fan is indeed 12v.<br />
<br />
Plugging it in I get nothing...no fan movement at all. I'm using a recent version of Armbian if that matters.<br />
<br />
I believe I see this device under /sys/class/hwmon/hwmon4/ since is see pwm1 as well as pwm1_enable. <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cat /sys/class/hwmon/hwmon4/pwm1_enable</code></div></div><br />
returns 1 <br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/sys/class/hwmon/hwmon4&#36; cat /sys/class/hwmon/hwmon4/pwm1</code></div></div><br />
returns 0<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>echo 255 | sudo tee /sys/class/hwmon/hwmon4/pwm1</code></div></div><br />
still no fan response<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cat /sys/class/hwmon/hwmon4/pwm1</code></div></div>to verify my adjustment but this still returns 0. Fan is motionless.<br />
<br />
At this point i'm ready to give up and connect to the boards 12v out but I have questions there.<br />
<br />
The original cable it comes with splits to 2 different SATA connection leads, leading me to believe this is not a conventional connection? This is for the CON15 DC out header.<br />
<br />
the Noctua includes a big 4pin adapter but I'm not confident in what to order. I also didn't see anything relevant in the Pine store for accessories. <br />
<br />
FYI I'm currently not running any SATA drives as I recently opted for NVMe (mostly due to availability).<br />
<br />
any help please!!??]]></description>
			<content:encoded><![CDATA[I recently purchased an 80mm Noctua NF-A8 ULN fan for the Rock NAS case along with a Noctua 2pin to 3pin adaptor. Fan is indeed 12v.<br />
<br />
Plugging it in I get nothing...no fan movement at all. I'm using a recent version of Armbian if that matters.<br />
<br />
I believe I see this device under /sys/class/hwmon/hwmon4/ since is see pwm1 as well as pwm1_enable. <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cat /sys/class/hwmon/hwmon4/pwm1_enable</code></div></div><br />
returns 1 <br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/sys/class/hwmon/hwmon4&#36; cat /sys/class/hwmon/hwmon4/pwm1</code></div></div><br />
returns 0<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>echo 255 | sudo tee /sys/class/hwmon/hwmon4/pwm1</code></div></div><br />
still no fan response<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cat /sys/class/hwmon/hwmon4/pwm1</code></div></div>to verify my adjustment but this still returns 0. Fan is motionless.<br />
<br />
At this point i'm ready to give up and connect to the boards 12v out but I have questions there.<br />
<br />
The original cable it comes with splits to 2 different SATA connection leads, leading me to believe this is not a conventional connection? This is for the CON15 DC out header.<br />
<br />
the Noctua includes a big 4pin adapter but I'm not confident in what to order. I also didn't see anything relevant in the Pine store for accessories. <br />
<br />
FYI I'm currently not running any SATA drives as I recently opted for NVMe (mostly due to availability).<br />
<br />
any help please!!??]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Overclock of RAM, CPU and GPU]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=18959</link>
			<pubDate>Wed, 20 Dec 2023 15:54:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=14668">Maxpako</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=18959</guid>
			<description><![CDATA[Hi there,<br />
<br />
For those who wants to take out the most performance out of the rk3399 on your RockPro64, I have here a u-boot and a DTS where on Manjaro works perfectly.<br />
<br />
This includes a 1.6GHz on the little cores, a 2.2GHz on the big cores, and 1GHz on the GPU, as well as setting the RAM to 933MHz LPDDR4.<br />
<br />
Please find it on the Pine64 &gt; rock64 discord channel:<br />
<a href="https://discord.com/channels/463237927984693259/463285027942432787/1186590221534507058" target="_blank" rel="noopener" class="mycode_url">https://discord.com/channels/46323792798...1534507058</a><br />
<br />
Here are the gains:<br />
<img src="https://media.discordapp.net/attachments/463285027942432787/1186393340887965707/image.png?ex=659315e6&amp;is=6580a0e6&amp;hm=8c1140ba2a03702179d9660209cf3b55020357d297d3dbba10315059fbc2e944&amp;=&amp;format=webp&amp;quality=lossless&amp;width=824&amp;height=165" loading="lazy"  alt="[Image: image.png?ex=659315e6&amp;is=6580a0e6&amp;hm=8c1...height=165]" class="mycode_img" /><br />
GPU and CPU stressed out in a roshambo case, no more than 70ºC.<br />
<br />
Unfortunately, on Batocera which I'm most interested, there's no audio using this u-boot.<br />
Any help will be appreciated to fix this on Batocera.<br />
<br />
Please note that it's not my work, I just followed these threads and info available:<br />
<dvz_me_placeholder id="0" /> =&gt; <a href="https://forum.pine64.org/showthread.php?tid=13506" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=13506</a><br />
<a href="https://wiki.pine64.org/wiki/ROCKPro64_Hardware_Tweaks#Stabilizing_the_system_(underclocking_the_RAM)" target="_blank" rel="noopener" class="mycode_url">https://wiki.pine64.org/wiki/ROCKPro64_H...g_the_RAM)</a><br />
So, credits to them.]]></description>
			<content:encoded><![CDATA[Hi there,<br />
<br />
For those who wants to take out the most performance out of the rk3399 on your RockPro64, I have here a u-boot and a DTS where on Manjaro works perfectly.<br />
<br />
This includes a 1.6GHz on the little cores, a 2.2GHz on the big cores, and 1GHz on the GPU, as well as setting the RAM to 933MHz LPDDR4.<br />
<br />
Please find it on the Pine64 &gt; rock64 discord channel:<br />
<a href="https://discord.com/channels/463237927984693259/463285027942432787/1186590221534507058" target="_blank" rel="noopener" class="mycode_url">https://discord.com/channels/46323792798...1534507058</a><br />
<br />
Here are the gains:<br />
<img src="https://media.discordapp.net/attachments/463285027942432787/1186393340887965707/image.png?ex=659315e6&amp;is=6580a0e6&amp;hm=8c1140ba2a03702179d9660209cf3b55020357d297d3dbba10315059fbc2e944&amp;=&amp;format=webp&amp;quality=lossless&amp;width=824&amp;height=165" loading="lazy"  alt="[Image: image.png?ex=659315e6&amp;is=6580a0e6&amp;hm=8c1...height=165]" class="mycode_img" /><br />
GPU and CPU stressed out in a roshambo case, no more than 70ºC.<br />
<br />
Unfortunately, on Batocera which I'm most interested, there's no audio using this u-boot.<br />
Any help will be appreciated to fix this on Batocera.<br />
<br />
Please note that it's not my work, I just followed these threads and info available:<br />
<dvz_me_placeholder id="0" /> =&gt; <a href="https://forum.pine64.org/showthread.php?tid=13506" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=13506</a><br />
<a href="https://wiki.pine64.org/wiki/ROCKPro64_Hardware_Tweaks#Stabilizing_the_system_(underclocking_the_RAM)" target="_blank" rel="noopener" class="mycode_url">https://wiki.pine64.org/wiki/ROCKPro64_H...g_the_RAM)</a><br />
So, credits to them.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SPI]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=18923</link>
			<pubDate>Sun, 03 Dec 2023 14:23:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=25445">hazz</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=18923</guid>
			<description><![CDATA[Hi there i've messed up with my spi <br />
I'm able to boot the netbsd emmc only shorting the pin 20-21.How can i reset as a default spi?<br />
I do not want to connect via the serial console but just run the NETBSD 10RC1 and connect via ssh<br />
Any tips would be very appreciated]]></description>
			<content:encoded><![CDATA[Hi there i've messed up with my spi <br />
I'm able to boot the netbsd emmc only shorting the pin 20-21.How can i reset as a default spi?<br />
I do not want to connect via the serial console but just run the NETBSD 10RC1 and connect via ssh<br />
Any tips would be very appreciated]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Max Resolution Supported by RP64?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=18798</link>
			<pubDate>Mon, 16 Oct 2023 17:13:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26905">hoarfrosty</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=18798</guid>
			<description><![CDATA[A few weeks ago I picked up a Dell (Alienware) AW3423DW monitor. It runs Windows 10 on my laptop fine, and is good for work. The max (and native) resolution is 3440x1440 @ 100Hz. <br />
<br />
However my RockPro64 with Linux is only able to reach 1920x1080 @ 120 Hz. Ive tried multiple distros (Manjaro, Arch, Ubuntu, Debian, and Armbian Twister). I'm back on Manjaro now, as that runs the smoothest (YMMV). It correctly identifies the model of the display, but doesn't offer higher resolutions and I'm stuck with black bars on the sides of my screen.<br />
<br />
In the RockPro64 specs it says the following:<br />
Dual VOP: one supports resolutions up to 4096x2160 and <a href="https://www.arm.com/why-arm/technologies/graphics-technologies/arm-frame-buffer-compression" target="_blank" rel="noopener" class="mycode_url">AFBC</a>; the other supports resolutions up to 2560x1600<br />
<br />
So, I wonder if there is a way to use the larger VOP and reach the 3440x1440 resolution? Or am I just trying to push this little board beyond its limits?<br />
<br />
I've gone through several unsuccessful attempts at adding the resolution using xrandr (addmode, output, etc.).<br />
<br />
Here is some more info, and a EDID file I found on GitHub, but haven't been able to use.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36; cvt 3440 1400 100<br />
# 3440x1400 99.96 Hz (CVT) hsync: 148.44 kHz; pclk: 707.75 MHz<br />
Modeline "3440x1400_100.00"  707.75  3440 3728 4104 4768  1400 1403 1413 1485 -hsync +vsync</code></div></div><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36; xrandr -q<br />
Screen 0: minimum 16 x 16, current 1920 x 1080, maximum 32767 x 32767<br />
HDMI-A-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 810mm x 350mm<br />
   1920x1080     59.96*+<br />
   1440x1080     59.99  <br />
   1400x1050     59.98  <br />
   1280x1024     59.89  <br />
   1280x960      59.94  <br />
   1152x864      59.96  <br />
   1024x768      59.92  <br />
   800x600       59.86  <br />
   640x480       59.38  <br />
   320x240       59.52  <br />
   1680x1050     59.95  <br />
   1440x900      59.89  <br />
   1280x800      59.81  <br />
   1152x720      59.97  <br />
   960x600       59.63  <br />
   928x580       59.88  <br />
   800x500       59.50  <br />
   768x480       59.90  <br />
   720x480       59.71  <br />
   640x400       59.95  <br />
   320x200       58.96  <br />
   1600x900      59.95  <br />
   1368x768      59.88  <br />
   1280x720      59.86  <br />
   1024x576      59.90  <br />
   864x486       59.92  <br />
   720x400       59.55  <br />
   640x350       59.77</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Monitor Asset Manager Report, generated 29.4.2023<br />
Copyright (c) 1995-2019, EnTech Taiwan.<br />
---------------------------<br />
<br />
Monitor #1 [Real-time 0x0100]<br />
  Model name............... Dell AW3423DW<br />
  Manufacturer............. Dell<br />
  Plug and Play ID......... DELA1E4<br />
  Serial number............ <br />
  Manufacture date......... 2022, ISO week 42<br />
  Filter driver............ None<br />
  -------------------------<br />
  EDID revision............ 1.4<br />
  Input signal type........ Digital (DisplayPort)<br />
  Color bit depth.......... 10 bits per primary color<br />
  Color encoding formats... RGB 4:4:4, YCrCb 4:4:4, YCrCb 4:2:2<br />
  Screen size.............. 810 x 350 mm (34.7 in)<br />
  Power management......... Active off/sleep<br />
  Extension blocs.......... 2<br />
  -------------------------<br />
  DDC/CI................... Supported<br />
  MCCS revison............. 2.2<br />
  Display technology....... TFT<br />
  Controller............... Unknown<br />
  Firmware revision........ 2.166<br />
  Firmware flags........... 0x0010FFFF<br />
  Active power on time..... 1117 hours<br />
  Power consumption........ Not supported<br />
  Current frequency........ 182.83kHz, 120.00Hz<br />
<br />
Color characteristics<br />
  Default color space...... Non-sRGB<br />
  Display gamma............ 2.20<br />
  Red chromaticity......... Rx 0.690 - Ry 0.304<br />
  Green chromaticity....... Gx 0.241 - Gy 0.715<br />
  Blue chromaticity........ Bx 0.146 - By 0.057<br />
  White point (default).... Wx 0.313 - Wy 0.329<br />
  Additional descriptors... None<br />
<br />
Timing characteristics<br />
  Horizontal scan range.... 255-255kHz<br />
  Vertical scan range...... 1-175Hz<br />
  Video bandwidth.......... 990MHz<br />
  CVT standard............. Not supported<br />
  GTF standard............. Supported<br />
  Additional descriptors... None<br />
  Preferred timing......... Yes<br />
  Native/preferred timing.. 3440x1440p at 60Hz <br />
    Modeline............... "3440x1440" 319.750 3440 3488 3520 3600 1440 1473 1478 1481 +hsync -vsync<br />
<br />
Standard timings supported<br />
     640 x  480p at  60Hz - IBM VGA<br />
     800 x  600p at  60Hz - VESA<br />
    1024 x  768p at  60Hz - VESA<br />
<br />
EIA/CEA/CTA-861 Information<br />
  Revision number.......... 3<br />
  IT underscan............. Supported<br />
  Basic audio.............. Supported<br />
  YCbCr 4:4:4.............. Supported<br />
  YCbCr 4:2:2.............. Supported<br />
  Native formats........... 1<br />
  Detailed timing #1....... 3440x1440p at 100Hz <br />
    Modeline............... "3440x1440" 543.500 3440 3488 3520 3600 1440 1502 1507 1510 +hsync -vsync<br />
<br />
CE audio data (formats supported)<br />
  LPCM    2-channel, 16-bit              at 32/44/48 kHz<br />
<br />
CE speaker allocation data<br />
  Channel configuration.... 2.0<br />
  Front left/right......... Yes<br />
  Front LFE................ No<br />
  Front center............. No<br />
  Rear left/right.......... No<br />
  Rear center.............. No<br />
  Front left/right center.. No<br />
  Rear left/right center... No<br />
  Rear LFE................. No<br />
<br />
CE vendor specific data (VSDB)<br />
  IEEE registration number. 0x00044B<br />
  CEC physical address..... 0.1.0.1<br />
  Maximum TMDS clock....... 165MHz<br />
<br />
CE colorimetry data<br />
  xvYCC601 support......... No<br />
  xvYCC709 support......... No<br />
  sYCC601 support.......... No<br />
  AdobeYCC601 support...... No<br />
  AdobeRGB support......... No<br />
  BT2020CYCC support....... No<br />
  BT2020YCC support........ Yes<br />
  BT2020RGB support........ Yes<br />
  Metadata profile flags... 0x00<br />
<br />
CE video capability data<br />
  CE scan behavior......... Always underscanned<br />
  IT scan behavior......... Always underscanned<br />
  PT scan behavior......... Always underscanned<br />
  RGB quantization range... Selectable (via AVI YQ)<br />
  YCC quantization range... Not supported<br />
<br />
HDR static metadata<br />
  SDR luminance............ Yes<br />
  HDR luminance............ No<br />
  SMPTE ST2084............. Yes<br />
  Hybrid log............... No<br />
  Data payload............. 0605018D4B00<br />
<br />
Report information<br />
  Date generated........... 29.4.2023<br />
  Software revision........ 2.91.0.1043<br />
  Data source.............. Real-time 0x0100<br />
  Operating system......... 10.0.19045.2<br />
<br />
Raw data<br />
  00,FF,FF,FF,FF,FF,FF,00,10,AC,E4,A1,53,41,36,30,2A,20,01,04,B5,51,23,78,3B,FC,A1,B0,4D,3D,B7,25,<br />
  0E,50,54,21,08,00,01,01,01,01,01,01,01,01,01,01,01,01,01,01,01,01,E7,7C,70,A0,D0,A0,29,50,30,20,<br />
  15,08,29,62,31,00,00,1A,00,00,00,FF,00,23,47,37,51,59,4D,78,67,77,41,42,31,43,00,00,00,FD,00,01,<br />
  AF,FF,FF,63,01,0A,20,20,20,20,20,20,00,00,00,FC,00,44,65,6C,6C,20,41,57,33,34,32,33,44,57,02,08,<br />
  02,03,20,F1,23,09,07,01,83,01,00,00,65,4B,04,00,01,01,E3,05,C0,00,E2,00,6A,E6,06,05,01,8D,4B,00,<br />
  4E,D4,70,A0,D0,A0,46,50,30,20,E5,0C,29,62,31,00,00,1A,00,00,00,00,00,00,00,00,00,00,00,00,00,00,<br />
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,<br />
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,6F<br />
<br />
---------------------------<br />
<br />
Hardware data<br />
  BUS_SLOT = PCI00000.PCI00004.PCI00008.PCI0000C.PCI00010.PCI00014.PCI00018.PCI0001C<br />
  00000000 = 14801022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000008 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000009 = 14831022.00100406.06040000.00810010.00000000.00000000.00010100.000001F1<br />
  0000000A = 14831022.00100407.06040000.00810010.00000000.00000000.00080200.2000F1F1<br />
  00000010 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000018 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000019 = 14831022.00100406.06040000.00810010.00000000.00000000.00090900.000001F1<br />
  0000001A = 14831022.00100407.06040000.00810010.00000000.00000000.000A0A00.2000E1E1<br />
  00000020 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000028 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000038 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000039 = 14841022.00100404.06040000.00810010.00000000.00000000.000B0B00.000001F1<br />
  00000040 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000041 = 14841022.00100406.06040000.00810010.00000000.00000000.000C0C00.000001F1<br />
  000000A0 = 790B1022.02200403.0C050061.00800000.00000000.00000000.00000000.00000000<br />
  000000A3 = 790E1022.0220000F.06010051.00800000.00000000.00000000.00000000.00000000<br />
  000000C0 = 14401022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C1 = 14411022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C2 = 14421022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C3 = 14431022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C4 = 14441022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C5 = 14451022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C6 = 14461022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C7 = 14471022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000100 = 50161987.00100406.01080201.00000010.FCF00004.00000000.00000000.00000000<br />
  00000200 = 57AD1022.00100407.06040000.00010010.00000000.00000000.00080302.0000F1F1<br />
  00000328 = 57A31022.00100407.06040000.00810010.00000000.00000000.00040403.0000F1F1<br />
  00000330 = 57A31022.00100406.06040000.00810010.00000000.00000000.00050503.000001F1<br />
  00000340 = 57A41022.00100406.06040000.00810010.00000000.00000000.00060603.000001F1<br />
  00000348 = 57A41022.00100406.06040000.00810010.00000000.00000000.00070703.000001F1<br />
  00000350 = 57A41022.00100406.06040000.00810010.00000000.00000000.00080803.000001F1<br />
  00000400 = 15398086.00100406.02000003.00000010.FCB00000.00000000.00000001.FCB20000<br />
  00000500 = 00121102.00100006.04030001.00000010.FCAFC004.00000000.FCAF8004.00000000<br />
  00000600 = 14851022.00100404.13000000.00800010.00000000.00000000.00000000.00000000<br />
  00000601 = 149C1022.00100406.0C033000.00800010.FC700004.00000000.00000000.00000000<br />
  00000603 = 149C1022.00100406.0C033000.00800010.FC600004.00000000.00000000.00000000<br />
  00000700 = 79011022.00100406.01060151.00000010.00000000.00000000.00000000.00000000<br />
  00000800 = 79011022.00100406.01060151.00000010.00000000.00000000.00000000.00000000<br />
  00000900 = 43A014E4.00100006.02800003.00000010.FC4F8004.00000000.FC200004.00000000<br />
  00000A00 = 220810DE.00100407.030000A1.00800010.FB000000.0000000C.00000078.0000000C<br />
  00000A01 = 1AEF10DE.00100006.040300A1.00800010.FC0FC000.00000000.00000000.00000000<br />
  00000B00 = 148A1022.00100404.13000000.00000010.00000000.00000000.00000000.00000000<br />
  00000C00 = 14851022.00100404.13000000.00800010.00000000.00000000.00000000.00000000<br />
  00000C01 = 14861022.00100400.10800000.00800010.00000000.00000000.FCE00000.00000000<br />
  00000C03 = 149C1022.00100406.0C033000.00800010.FCC00004.00000000.00000000.00000000<br />
  00000C04 = 14871022.00100006.04030000.00800010.FCDF0000.00000000.00000000.00000000<br />
  --------</code></div></div>]]></description>
			<content:encoded><![CDATA[A few weeks ago I picked up a Dell (Alienware) AW3423DW monitor. It runs Windows 10 on my laptop fine, and is good for work. The max (and native) resolution is 3440x1440 @ 100Hz. <br />
<br />
However my RockPro64 with Linux is only able to reach 1920x1080 @ 120 Hz. Ive tried multiple distros (Manjaro, Arch, Ubuntu, Debian, and Armbian Twister). I'm back on Manjaro now, as that runs the smoothest (YMMV). It correctly identifies the model of the display, but doesn't offer higher resolutions and I'm stuck with black bars on the sides of my screen.<br />
<br />
In the RockPro64 specs it says the following:<br />
Dual VOP: one supports resolutions up to 4096x2160 and <a href="https://www.arm.com/why-arm/technologies/graphics-technologies/arm-frame-buffer-compression" target="_blank" rel="noopener" class="mycode_url">AFBC</a>; the other supports resolutions up to 2560x1600<br />
<br />
So, I wonder if there is a way to use the larger VOP and reach the 3440x1440 resolution? Or am I just trying to push this little board beyond its limits?<br />
<br />
I've gone through several unsuccessful attempts at adding the resolution using xrandr (addmode, output, etc.).<br />
<br />
Here is some more info, and a EDID file I found on GitHub, but haven't been able to use.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36; cvt 3440 1400 100<br />
# 3440x1400 99.96 Hz (CVT) hsync: 148.44 kHz; pclk: 707.75 MHz<br />
Modeline "3440x1400_100.00"  707.75  3440 3728 4104 4768  1400 1403 1413 1485 -hsync +vsync</code></div></div><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36; xrandr -q<br />
Screen 0: minimum 16 x 16, current 1920 x 1080, maximum 32767 x 32767<br />
HDMI-A-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 810mm x 350mm<br />
   1920x1080     59.96*+<br />
   1440x1080     59.99  <br />
   1400x1050     59.98  <br />
   1280x1024     59.89  <br />
   1280x960      59.94  <br />
   1152x864      59.96  <br />
   1024x768      59.92  <br />
   800x600       59.86  <br />
   640x480       59.38  <br />
   320x240       59.52  <br />
   1680x1050     59.95  <br />
   1440x900      59.89  <br />
   1280x800      59.81  <br />
   1152x720      59.97  <br />
   960x600       59.63  <br />
   928x580       59.88  <br />
   800x500       59.50  <br />
   768x480       59.90  <br />
   720x480       59.71  <br />
   640x400       59.95  <br />
   320x200       58.96  <br />
   1600x900      59.95  <br />
   1368x768      59.88  <br />
   1280x720      59.86  <br />
   1024x576      59.90  <br />
   864x486       59.92  <br />
   720x400       59.55  <br />
   640x350       59.77</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Monitor Asset Manager Report, generated 29.4.2023<br />
Copyright (c) 1995-2019, EnTech Taiwan.<br />
---------------------------<br />
<br />
Monitor #1 [Real-time 0x0100]<br />
  Model name............... Dell AW3423DW<br />
  Manufacturer............. Dell<br />
  Plug and Play ID......... DELA1E4<br />
  Serial number............ <br />
  Manufacture date......... 2022, ISO week 42<br />
  Filter driver............ None<br />
  -------------------------<br />
  EDID revision............ 1.4<br />
  Input signal type........ Digital (DisplayPort)<br />
  Color bit depth.......... 10 bits per primary color<br />
  Color encoding formats... RGB 4:4:4, YCrCb 4:4:4, YCrCb 4:2:2<br />
  Screen size.............. 810 x 350 mm (34.7 in)<br />
  Power management......... Active off/sleep<br />
  Extension blocs.......... 2<br />
  -------------------------<br />
  DDC/CI................... Supported<br />
  MCCS revison............. 2.2<br />
  Display technology....... TFT<br />
  Controller............... Unknown<br />
  Firmware revision........ 2.166<br />
  Firmware flags........... 0x0010FFFF<br />
  Active power on time..... 1117 hours<br />
  Power consumption........ Not supported<br />
  Current frequency........ 182.83kHz, 120.00Hz<br />
<br />
Color characteristics<br />
  Default color space...... Non-sRGB<br />
  Display gamma............ 2.20<br />
  Red chromaticity......... Rx 0.690 - Ry 0.304<br />
  Green chromaticity....... Gx 0.241 - Gy 0.715<br />
  Blue chromaticity........ Bx 0.146 - By 0.057<br />
  White point (default).... Wx 0.313 - Wy 0.329<br />
  Additional descriptors... None<br />
<br />
Timing characteristics<br />
  Horizontal scan range.... 255-255kHz<br />
  Vertical scan range...... 1-175Hz<br />
  Video bandwidth.......... 990MHz<br />
  CVT standard............. Not supported<br />
  GTF standard............. Supported<br />
  Additional descriptors... None<br />
  Preferred timing......... Yes<br />
  Native/preferred timing.. 3440x1440p at 60Hz <br />
    Modeline............... "3440x1440" 319.750 3440 3488 3520 3600 1440 1473 1478 1481 +hsync -vsync<br />
<br />
Standard timings supported<br />
     640 x  480p at  60Hz - IBM VGA<br />
     800 x  600p at  60Hz - VESA<br />
    1024 x  768p at  60Hz - VESA<br />
<br />
EIA/CEA/CTA-861 Information<br />
  Revision number.......... 3<br />
  IT underscan............. Supported<br />
  Basic audio.............. Supported<br />
  YCbCr 4:4:4.............. Supported<br />
  YCbCr 4:2:2.............. Supported<br />
  Native formats........... 1<br />
  Detailed timing #1....... 3440x1440p at 100Hz <br />
    Modeline............... "3440x1440" 543.500 3440 3488 3520 3600 1440 1502 1507 1510 +hsync -vsync<br />
<br />
CE audio data (formats supported)<br />
  LPCM    2-channel, 16-bit              at 32/44/48 kHz<br />
<br />
CE speaker allocation data<br />
  Channel configuration.... 2.0<br />
  Front left/right......... Yes<br />
  Front LFE................ No<br />
  Front center............. No<br />
  Rear left/right.......... No<br />
  Rear center.............. No<br />
  Front left/right center.. No<br />
  Rear left/right center... No<br />
  Rear LFE................. No<br />
<br />
CE vendor specific data (VSDB)<br />
  IEEE registration number. 0x00044B<br />
  CEC physical address..... 0.1.0.1<br />
  Maximum TMDS clock....... 165MHz<br />
<br />
CE colorimetry data<br />
  xvYCC601 support......... No<br />
  xvYCC709 support......... No<br />
  sYCC601 support.......... No<br />
  AdobeYCC601 support...... No<br />
  AdobeRGB support......... No<br />
  BT2020CYCC support....... No<br />
  BT2020YCC support........ Yes<br />
  BT2020RGB support........ Yes<br />
  Metadata profile flags... 0x00<br />
<br />
CE video capability data<br />
  CE scan behavior......... Always underscanned<br />
  IT scan behavior......... Always underscanned<br />
  PT scan behavior......... Always underscanned<br />
  RGB quantization range... Selectable (via AVI YQ)<br />
  YCC quantization range... Not supported<br />
<br />
HDR static metadata<br />
  SDR luminance............ Yes<br />
  HDR luminance............ No<br />
  SMPTE ST2084............. Yes<br />
  Hybrid log............... No<br />
  Data payload............. 0605018D4B00<br />
<br />
Report information<br />
  Date generated........... 29.4.2023<br />
  Software revision........ 2.91.0.1043<br />
  Data source.............. Real-time 0x0100<br />
  Operating system......... 10.0.19045.2<br />
<br />
Raw data<br />
  00,FF,FF,FF,FF,FF,FF,00,10,AC,E4,A1,53,41,36,30,2A,20,01,04,B5,51,23,78,3B,FC,A1,B0,4D,3D,B7,25,<br />
  0E,50,54,21,08,00,01,01,01,01,01,01,01,01,01,01,01,01,01,01,01,01,E7,7C,70,A0,D0,A0,29,50,30,20,<br />
  15,08,29,62,31,00,00,1A,00,00,00,FF,00,23,47,37,51,59,4D,78,67,77,41,42,31,43,00,00,00,FD,00,01,<br />
  AF,FF,FF,63,01,0A,20,20,20,20,20,20,00,00,00,FC,00,44,65,6C,6C,20,41,57,33,34,32,33,44,57,02,08,<br />
  02,03,20,F1,23,09,07,01,83,01,00,00,65,4B,04,00,01,01,E3,05,C0,00,E2,00,6A,E6,06,05,01,8D,4B,00,<br />
  4E,D4,70,A0,D0,A0,46,50,30,20,E5,0C,29,62,31,00,00,1A,00,00,00,00,00,00,00,00,00,00,00,00,00,00,<br />
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,<br />
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,6F<br />
<br />
---------------------------<br />
<br />
Hardware data<br />
  BUS_SLOT = PCI00000.PCI00004.PCI00008.PCI0000C.PCI00010.PCI00014.PCI00018.PCI0001C<br />
  00000000 = 14801022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000008 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000009 = 14831022.00100406.06040000.00810010.00000000.00000000.00010100.000001F1<br />
  0000000A = 14831022.00100407.06040000.00810010.00000000.00000000.00080200.2000F1F1<br />
  00000010 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000018 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000019 = 14831022.00100406.06040000.00810010.00000000.00000000.00090900.000001F1<br />
  0000001A = 14831022.00100407.06040000.00810010.00000000.00000000.000A0A00.2000E1E1<br />
  00000020 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000028 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000038 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000039 = 14841022.00100404.06040000.00810010.00000000.00000000.000B0B00.000001F1<br />
  00000040 = 14821022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000041 = 14841022.00100406.06040000.00810010.00000000.00000000.000C0C00.000001F1<br />
  000000A0 = 790B1022.02200403.0C050061.00800000.00000000.00000000.00000000.00000000<br />
  000000A3 = 790E1022.0220000F.06010051.00800000.00000000.00000000.00000000.00000000<br />
  000000C0 = 14401022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C1 = 14411022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C2 = 14421022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C3 = 14431022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C4 = 14441022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C5 = 14451022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C6 = 14461022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  000000C7 = 14471022.00000000.06000000.00800000.00000000.00000000.00000000.00000000<br />
  00000100 = 50161987.00100406.01080201.00000010.FCF00004.00000000.00000000.00000000<br />
  00000200 = 57AD1022.00100407.06040000.00010010.00000000.00000000.00080302.0000F1F1<br />
  00000328 = 57A31022.00100407.06040000.00810010.00000000.00000000.00040403.0000F1F1<br />
  00000330 = 57A31022.00100406.06040000.00810010.00000000.00000000.00050503.000001F1<br />
  00000340 = 57A41022.00100406.06040000.00810010.00000000.00000000.00060603.000001F1<br />
  00000348 = 57A41022.00100406.06040000.00810010.00000000.00000000.00070703.000001F1<br />
  00000350 = 57A41022.00100406.06040000.00810010.00000000.00000000.00080803.000001F1<br />
  00000400 = 15398086.00100406.02000003.00000010.FCB00000.00000000.00000001.FCB20000<br />
  00000500 = 00121102.00100006.04030001.00000010.FCAFC004.00000000.FCAF8004.00000000<br />
  00000600 = 14851022.00100404.13000000.00800010.00000000.00000000.00000000.00000000<br />
  00000601 = 149C1022.00100406.0C033000.00800010.FC700004.00000000.00000000.00000000<br />
  00000603 = 149C1022.00100406.0C033000.00800010.FC600004.00000000.00000000.00000000<br />
  00000700 = 79011022.00100406.01060151.00000010.00000000.00000000.00000000.00000000<br />
  00000800 = 79011022.00100406.01060151.00000010.00000000.00000000.00000000.00000000<br />
  00000900 = 43A014E4.00100006.02800003.00000010.FC4F8004.00000000.FC200004.00000000<br />
  00000A00 = 220810DE.00100407.030000A1.00800010.FB000000.0000000C.00000078.0000000C<br />
  00000A01 = 1AEF10DE.00100006.040300A1.00800010.FC0FC000.00000000.00000000.00000000<br />
  00000B00 = 148A1022.00100404.13000000.00000010.00000000.00000000.00000000.00000000<br />
  00000C00 = 14851022.00100404.13000000.00800010.00000000.00000000.00000000.00000000<br />
  00000C01 = 14861022.00100400.10800000.00800010.00000000.00000000.FCE00000.00000000<br />
  00000C03 = 149C1022.00100406.0C033000.00800010.FCC00004.00000000.00000000.00000000<br />
  00000C04 = 14871022.00100006.04030000.00800010.FCDF0000.00000000.00000000.00000000<br />
  --------</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[You don't sell case and fan for "ROCKPro64 4GB Single Board Computer"?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=18705</link>
			<pubDate>Sat, 16 Sep 2023 14:44:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=15079">Clea</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=18705</guid>
			<description><![CDATA[Hi <br />
<br />
You don't sell case and fan for "ROCKPro64 4GB Single Board Computer"?<br />
<br />
Where to buy?<br />
<br />
I wish to use it with LibreELEC]]></description>
			<content:encoded><![CDATA[Hi <br />
<br />
You don't sell case and fan for "ROCKPro64 4GB Single Board Computer"?<br />
<br />
Where to buy?<br />
<br />
I wish to use it with LibreELEC]]></content:encoded>
		</item>
	</channel>
</rss>