<?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 PinePhone]]></title>
		<link>https://forum.pine64.org/</link>
		<description><![CDATA[PINE64 - https://forum.pine64.org]]></description>
		<pubDate>Sat, 16 May 2026 02:04:38 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[keyboard and docking pad]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20192</link>
			<pubDate>Sun, 15 Feb 2026 14:41:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26433">wigan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20192</guid>
			<description><![CDATA[Debian Mobian<br />
vmlinuz-6.1-sunxi64<br />
<br />
Docking bar doesn't work w/ the fon in the keyboard (connected to the pinefon<br />
USB-C port).  The keyboard manual says (in four languages)...<br />
<br />
  When coupled w/ the keyboard the pinefone's USB-C is to be used 'solely' for<br />
  data and peripherials.<br />
<br />
I take the docking bar to be a peripherial.  I've read through the relevant<br />
material w/o finding a way through.<br />
<br />
  Firmware:  <a href="https://xnux.eu/pinephone-keyboard/" target="_blank" rel="noopener" class="mycode_url">https://xnux.eu/pinephone-keyboard/</a><br />
  Firmware repository: <a href="https://xff.cz/git/pinephone-keyboard/" target="_blank" rel="noopener" class="mycode_url">https://xff.cz/git/pinephone-keyboard/</a><br />
  FAQ:  <a href="https://xnux.eu/pinephone-keyboard/faq.html" target="_blank" rel="noopener" class="mycode_url">https://xnux.eu/pinephone-keyboard/faq.html</a><br />
<br />
Would like to hear from anyone who has this working.<br />
<br />
-ludy-]]></description>
			<content:encoded><![CDATA[Debian Mobian<br />
vmlinuz-6.1-sunxi64<br />
<br />
Docking bar doesn't work w/ the fon in the keyboard (connected to the pinefon<br />
USB-C port).  The keyboard manual says (in four languages)...<br />
<br />
  When coupled w/ the keyboard the pinefone's USB-C is to be used 'solely' for<br />
  data and peripherials.<br />
<br />
I take the docking bar to be a peripherial.  I've read through the relevant<br />
material w/o finding a way through.<br />
<br />
  Firmware:  <a href="https://xnux.eu/pinephone-keyboard/" target="_blank" rel="noopener" class="mycode_url">https://xnux.eu/pinephone-keyboard/</a><br />
  Firmware repository: <a href="https://xff.cz/git/pinephone-keyboard/" target="_blank" rel="noopener" class="mycode_url">https://xff.cz/git/pinephone-keyboard/</a><br />
  FAQ:  <a href="https://xnux.eu/pinephone-keyboard/faq.html" target="_blank" rel="noopener" class="mycode_url">https://xnux.eu/pinephone-keyboard/faq.html</a><br />
<br />
Would like to hear from anyone who has this working.<br />
<br />
-ludy-]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Faster OS test deployments - Faster UART?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20190</link>
			<pubDate>Wed, 11 Feb 2026 12:30:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20190</guid>
			<description><![CDATA[I have an SD Card extender for booting my under-development OS.  But I'm tired of switching it in/out for each build every few minutes.  So I had the idea to just transmit my builds over the UART interface! <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
The UART seems to default to 115,200 (from u-boot?) and is working fine with my serial USB adapter.  However this baud rate is going to be too slow for my 10MB debug builds.<br />
<br />
So I wanted to try 1.5Mbps with the UART divisor of 0x1, but it doesnt seem to work (using linux util 'screen' but also tried my own Zig UART code).<br />
<br />
My question is, how do I set the APB2 clock dividers and UART0 divider to match any of the standard baud rates please? and is there a limit on UART0?  I seem to recall a limit elsewhere related to the modem, but I cant find the details now.<br />
<br />
Also, from what I brute forced so far, it seems like I can only approximate other baud settings?  In fact the default UART divider of 0xd seems to also be an approximation?  Is that the best I can do here?<br />
<br />
Alternative would be to get the USB port working, but I think that might be quite a bit more challenging...]]></description>
			<content:encoded><![CDATA[I have an SD Card extender for booting my under-development OS.  But I'm tired of switching it in/out for each build every few minutes.  So I had the idea to just transmit my builds over the UART interface! <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
The UART seems to default to 115,200 (from u-boot?) and is working fine with my serial USB adapter.  However this baud rate is going to be too slow for my 10MB debug builds.<br />
<br />
So I wanted to try 1.5Mbps with the UART divisor of 0x1, but it doesnt seem to work (using linux util 'screen' but also tried my own Zig UART code).<br />
<br />
My question is, how do I set the APB2 clock dividers and UART0 divider to match any of the standard baud rates please? and is there a limit on UART0?  I seem to recall a limit elsewhere related to the modem, but I cant find the details now.<br />
<br />
Also, from what I brute forced so far, it seems like I can only approximate other baud settings?  In fact the default UART divider of 0xd seems to also be an approximation?  Is that the best I can do here?<br />
<br />
Alternative would be to get the USB port working, but I think that might be quite a bit more challenging...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[best setup to run waydroid with discord + instagram]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20180</link>
			<pubDate>Sun, 01 Feb 2026 19:41:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=16918">dustfinger</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20180</guid>
			<description><![CDATA[Hi,<br />
<br />
I am interested in knowing if anyone has been able to run Instagram or discord apps using waydroid (or alternative setups) on the pinephone with stable performance. I am also interested in knowing if anyone has been able to run any youtube app with stable performance. <br />
<br />
Aside from the proprietary apps, I would also love to hear from anyone using alternative opensource apps? I know some projects exist for discord, such as WebCord, ArmCord and maybe there are more projects like those some of you have had success with and would like to share.<br />
<br />
Please also share what OS + mobile shell combination you are using and anything else you can think of that was important for performance and stability.<br />
<br />
cheers!<br />
<br />
dustfinger]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I am interested in knowing if anyone has been able to run Instagram or discord apps using waydroid (or alternative setups) on the pinephone with stable performance. I am also interested in knowing if anyone has been able to run any youtube app with stable performance. <br />
<br />
Aside from the proprietary apps, I would also love to hear from anyone using alternative opensource apps? I know some projects exist for discord, such as WebCord, ArmCord and maybe there are more projects like those some of you have had success with and would like to share.<br />
<br />
Please also share what OS + mobile shell combination you are using and anything else you can think of that was important for performance and stability.<br />
<br />
cheers!<br />
<br />
dustfinger]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bare Metal OS]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20170</link>
			<pubDate>Fri, 16 Jan 2026 12:17:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20170</guid>
			<description><![CDATA[I'm still working full-time on my educational bare metal OS project for the PinePhone.  Zig has been a great match for this project, and with a sprinkling of arm assembly, the OS is now booting in 800ms!  Who needs modern hardware <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  <br />
<br />
Anyway, I'm almost at the point where I can add some basic Apps, and then I'll have to think about distribution to a couple of colleagues for testing.<br />
<br />
First I need to ensure my OS can only boot on the PinePhone v1.2b, since that is the only device I have for development.  Does anyone know if there there is a version string somewhere within the hardware?<br />
<br />
The other unknown is U-Boot.  It seems to do a lot of the hardware configuration before it reaches my kernel code, and I am a little concerned that people might be running different versions from me (U-Boot 2020.07).  Currently I'm running from SD card, but maybe the boot process/chain is different once I figure out how to install my kernal onto the eMMC?<br />
<br />
Do we know how many v1.2b devices were sold? and how long they will stay in production?  Since that obviously limits the scope of my project.  The device I have is continually out-of-stock, maybe already discontinued?  And the expensive model is currently &#36;270, which is a bit of a worry when I see android 14 phones going for 79eur.  Are the PinePhones still selling?<br />
<br />
Anyway, whatever becomes of this project, I wanted to thank the community for their support over the past 2 years.  It's a shame I didnt discover the PP sooner!  I was hoping to add LORA and Keyboard case support next, but just discovered they are no longer available <img src="https://forum.pine64.org/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" />]]></description>
			<content:encoded><![CDATA[I'm still working full-time on my educational bare metal OS project for the PinePhone.  Zig has been a great match for this project, and with a sprinkling of arm assembly, the OS is now booting in 800ms!  Who needs modern hardware <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  <br />
<br />
Anyway, I'm almost at the point where I can add some basic Apps, and then I'll have to think about distribution to a couple of colleagues for testing.<br />
<br />
First I need to ensure my OS can only boot on the PinePhone v1.2b, since that is the only device I have for development.  Does anyone know if there there is a version string somewhere within the hardware?<br />
<br />
The other unknown is U-Boot.  It seems to do a lot of the hardware configuration before it reaches my kernel code, and I am a little concerned that people might be running different versions from me (U-Boot 2020.07).  Currently I'm running from SD card, but maybe the boot process/chain is different once I figure out how to install my kernal onto the eMMC?<br />
<br />
Do we know how many v1.2b devices were sold? and how long they will stay in production?  Since that obviously limits the scope of my project.  The device I have is continually out-of-stock, maybe already discontinued?  And the expensive model is currently &#36;270, which is a bit of a worry when I see android 14 phones going for 79eur.  Are the PinePhones still selling?<br />
<br />
Anyway, whatever becomes of this project, I wanted to thank the community for their support over the past 2 years.  It's a shame I didnt discover the PP sooner!  I was hoping to add LORA and Keyboard case support next, but just discovered they are no longer available <img src="https://forum.pine64.org/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Rockchip gets DMCA'ed on media acceleration]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20156</link>
			<pubDate>Mon, 05 Jan 2026 13:33:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=19319">biketool</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20156</guid>
			<description><![CDATA[Looks like this has been going on for a while,takingffmpeg components as their own and then releasing on an incompatible Apache license.  This is gonna burn PPpro and Pinetab users I think, guess we will wait and see.<br />
<a href="https://github.com/rockchip-linux/mpp" target="_blank" rel="noopener" class="mycode_url">https://github.com/rockchip-linux/mpp</a><br />
looks like the other repos are up and only media acceleration is DCMA'ed.<br />
<a href="https://hackaday.com/2026/01/05/github-disables-rockchips-linux-mpp-repository-after-dmca-request/" target="_blank" rel="noopener" class="mycode_url">https://hackaday.com/2026/01/05/github-d...a-request/</a><br />
though someone could just fork and re-license correctly I think...]]></description>
			<content:encoded><![CDATA[Looks like this has been going on for a while,takingffmpeg components as their own and then releasing on an incompatible Apache license.  This is gonna burn PPpro and Pinetab users I think, guess we will wait and see.<br />
<a href="https://github.com/rockchip-linux/mpp" target="_blank" rel="noopener" class="mycode_url">https://github.com/rockchip-linux/mpp</a><br />
looks like the other repos are up and only media acceleration is DCMA'ed.<br />
<a href="https://hackaday.com/2026/01/05/github-disables-rockchips-linux-mpp-repository-after-dmca-request/" target="_blank" rel="noopener" class="mycode_url">https://hackaday.com/2026/01/05/github-d...a-request/</a><br />
though someone could just fork and re-license correctly I think...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Power up a 2nd core?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20148</link>
			<pubDate>Thu, 01 Jan 2026 12:29:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20148</guid>
			<description><![CDATA[I can see a PRCM register for CPU1_PWR_CLAMP that looks relevant for powering up a 2nd core.  But I cant find any info about this, and since it seems to be an 8 bit value I am very relucatant to hack it.  Is it documented anywhere please? or in general the whole 2nd core startup would be useful.  I can take a guess at some of the steps, but it would be nice to follow something official and not melt my chip <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[I can see a PRCM register for CPU1_PWR_CLAMP that looks relevant for powering up a 2nd core.  But I cant find any info about this, and since it seems to be an 8 bit value I am very relucatant to hack it.  Is it documented anywhere please? or in general the whole 2nd core startup would be useful.  I can take a guess at some of the steps, but it would be nice to follow something official and not melt my chip <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[beep - playing PCM samples on PinePhone?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20105</link>
			<pubDate>Thu, 04 Dec 2025 14:07:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20105</guid>
			<description><![CDATA[Can someone help me with an overview of the steps I'd need to play a PCM sample from RAM via the PinePhone speaker please?  I want my bare-metal OS to have some beeps <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
This is what I have so far:<br />
<br />
LINEOUT to Speaker goes via component U800, audio amplifier, and link expired in the component list.  but seems to have an interesting connection to NAND. (PA-SHDN)<br />
<br />
[edit: ignore this paragraph, I got AC_PR working!]    <span style="text-decoration: line-through;" class="mycode_s">AC_PR Configuration Register mentioned (p362), but not sure of it's register address or usage, it mentions PRCM but doesnt explain how.  It seems I'll need this for access to : 0x05 LINEOUT Control Register, and maybe to un-mute the MIX channels.   [Edit: I found more information in the A80 manual <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  it looks like R_PRCM is at 0x01F01400 in the A64,but still not clear where this AC+PR register is located.]</span><br />
<br />
Looking at the data path diagram (page 280).  It looks like I should be able to send PCM over I2S, but sounds like there is a mode that reads direct from RAM?<br />
<br />
As you can hear, I'm a bit lost down the rabbit hole at the moment!]]></description>
			<content:encoded><![CDATA[Can someone help me with an overview of the steps I'd need to play a PCM sample from RAM via the PinePhone speaker please?  I want my bare-metal OS to have some beeps <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
This is what I have so far:<br />
<br />
LINEOUT to Speaker goes via component U800, audio amplifier, and link expired in the component list.  but seems to have an interesting connection to NAND. (PA-SHDN)<br />
<br />
[edit: ignore this paragraph, I got AC_PR working!]    <span style="text-decoration: line-through;" class="mycode_s">AC_PR Configuration Register mentioned (p362), but not sure of it's register address or usage, it mentions PRCM but doesnt explain how.  It seems I'll need this for access to : 0x05 LINEOUT Control Register, and maybe to un-mute the MIX channels.   [Edit: I found more information in the A80 manual <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  it looks like R_PRCM is at 0x01F01400 in the A64,but still not clear where this AC+PR register is located.]</span><br />
<br />
Looking at the data path diagram (page 280).  It looks like I should be able to send PCM over I2S, but sounds like there is a mode that reads direct from RAM?<br />
<br />
As you can hear, I'm a bit lost down the rabbit hole at the moment!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[60fps display updates possible without GPU?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20101</link>
			<pubDate>Tue, 02 Dec 2025 20:56:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20101</guid>
			<description><![CDATA[I finally got the touch screen working! still some spurious events I need to track down still, including an interrupt flood.  But the first thing I added was finger paint mode, to check touch locations, and a button to clear the screen <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> <br />
<br />
All good fun, but my 'clear screen' functionality is super slow.  I'm guessing at .25s, slow enough to see the progress.  This is using a framebuffer approach i.e. no GPU, and a memset to do the clear.  But I also tried a direct arm assembly loop, and looks the same.<br />
<br />
I dont have enough experience with the PinePhone to know if this is to be expected? or an anomaly in my approach.  I was expecting to be able to easily do 60fps with plenty of spare cycles to run my apps.]]></description>
			<content:encoded><![CDATA[I finally got the touch screen working! still some spurious events I need to track down still, including an interrupt flood.  But the first thing I added was finger paint mode, to check touch locations, and a button to clear the screen <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> <br />
<br />
All good fun, but my 'clear screen' functionality is super slow.  I'm guessing at .25s, slow enough to see the progress.  This is using a framebuffer approach i.e. no GPU, and a memset to do the clear.  But I also tried a direct arm assembly loop, and looks the same.<br />
<br />
I dont have enough experience with the PinePhone to know if this is to be expected? or an anomaly in my approach.  I was expecting to be able to easily do 60fps with plenty of spare cycles to run my apps.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PinePhone sensors - Gyroscope power]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20092</link>
			<pubDate>Thu, 27 Nov 2025 21:28:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20092</guid>
			<description><![CDATA[So I got the proximity / light sensor working in my Zig OS <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  Although the sensor seems to be always powered on, which kinda makes sense, but I somehow expected a GPIO pin for switching it off.  <br />
<br />
Now I am looking at the gyroscope, wow it looks complicated <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> and I am kinda glad to see the secondary I2C fusion? lines are not connected.<br />
<br />
But here again it seems to be always powered on? (based on schematic), and I recall from my early iOS days, that gyroscopes can waste some power when always on.  Did I miss something?]]></description>
			<content:encoded><![CDATA[So I got the proximity / light sensor working in my Zig OS <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  Although the sensor seems to be always powered on, which kinda makes sense, but I somehow expected a GPIO pin for switching it off.  <br />
<br />
Now I am looking at the gyroscope, wow it looks complicated <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> and I am kinda glad to see the secondary I2C fusion? lines are not connected.<br />
<br />
But here again it seems to be always powered on? (based on schematic), and I recall from my early iOS days, that gyroscopes can waste some power when always on.  Did I miss something?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[what is the point?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20091</link>
			<pubDate>Thu, 27 Nov 2025 08:56:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=16789">vanja</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20091</guid>
			<description><![CDATA[Howdy.<br />
I've come across several daily driver users who eventually state things like<br />
Oh, I don't care about buggy wifi, slow X, crashing Y or unstable Z because I use it only for: calls, sms, contacts.<br />
Oh, who cares about battery life, i keep it powered off most of the day etc..<br />
<br />
my question is, what is the point of having a linux phone when use case is dumb phone features only? Why not just use some dumb nokia that runs for 7 days on a battery and call it a day? also same privacy level on those devices...<br />
<br />
I think the cold truth is, because its too slow and unstable to do anything else then calls and sms with it, but then the loop goes back to the beginning, what is the point..]]></description>
			<content:encoded><![CDATA[Howdy.<br />
I've come across several daily driver users who eventually state things like<br />
Oh, I don't care about buggy wifi, slow X, crashing Y or unstable Z because I use it only for: calls, sms, contacts.<br />
Oh, who cares about battery life, i keep it powered off most of the day etc..<br />
<br />
my question is, what is the point of having a linux phone when use case is dumb phone features only? Why not just use some dumb nokia that runs for 7 days on a battery and call it a day? also same privacy level on those devices...<br />
<br />
I think the cold truth is, because its too slow and unstable to do anything else then calls and sms with it, but then the loop goes back to the beginning, what is the point..]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Light Sensor / Proximity Sensor on PinePhone?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20085</link>
			<pubDate>Tue, 18 Nov 2025 14:41:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20085</guid>
			<description><![CDATA[Looking at the component list and schematic, I was expecting to find a STK3311-A, but my I2C check returns a different product ID, unless my I2C is still broken <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  Can anyone confirm which chip I am trying to talk to on the PinePhone Beta v1.2b please?]]></description>
			<content:encoded><![CDATA[Looking at the component list and schematic, I was expecting to find a STK3311-A, but my I2C check returns a different product ID, unless my I2C is still broken <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />  Can anyone confirm which chip I am trying to talk to on the PinePhone Beta v1.2b please?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What is wrong with the Mobian signature key?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20070</link>
			<pubDate>Sat, 08 Nov 2025 11:13:40 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=27339">Mahgue</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20070</guid>
			<description><![CDATA[I downloaded mobian-sunxi-plasma-mobile-13.0.[img.bmap|img.xz|sha256sums|sha256sums.sig] from <a href="https://images.mobian.org/sunxi/" target="_blank" rel="noopener" class="mycode_url">https://images.mobian.org/sunxi/</a> and failed to verify the signature.<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>LANGUAGE=en gpg --verify mobian-sunxi-plasma-mobile-13.0.sha256sums.sig mobian-sunxi-plasma-mobile-13.0.sha256sums<br />
gpg: Signature made Mo 13 Okt 2025 10:55:36 CEST<br />
gpg:                using RSA key 782C6C58B583FE966CEE44EBF8BDAB78BEE246C2<br />
gpg:                issuer "admin+images@mobian.org"<br />
gpg: Can't check signature: No public key</code></div></div>It seems to be signed with a key as mentioned in <a href="https://blog.mobian.org/posts/2025/10/new-stable-rotating-keys/" target="_blank" rel="noopener" class="mycode_url">https://blog.mobian.org/posts/2025/10/ne...ting-keys/</a> but I can not get this key from any server.<br />
<br />
<a href="https://wiki.debian.org/Mobian/Verify" target="_blank" rel="noopener" class="mycode_url">https://wiki.debian.org/Mobian/Verify</a> still mentions:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>gpg --keyserver pgp.mit.edu ...</code></div></div> which seems to be down since 2023. But trying keyring.debian.org, keys.openpgp.org, keyserver.ubuntu.com, pool.sks-keyservers.net fails too.<br />
<br />
Where do I get the key to verify the latest Mobian images for PinePhone (sunxi)?]]></description>
			<content:encoded><![CDATA[I downloaded mobian-sunxi-plasma-mobile-13.0.[img.bmap|img.xz|sha256sums|sha256sums.sig] from <a href="https://images.mobian.org/sunxi/" target="_blank" rel="noopener" class="mycode_url">https://images.mobian.org/sunxi/</a> and failed to verify the signature.<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>LANGUAGE=en gpg --verify mobian-sunxi-plasma-mobile-13.0.sha256sums.sig mobian-sunxi-plasma-mobile-13.0.sha256sums<br />
gpg: Signature made Mo 13 Okt 2025 10:55:36 CEST<br />
gpg:                using RSA key 782C6C58B583FE966CEE44EBF8BDAB78BEE246C2<br />
gpg:                issuer "admin+images@mobian.org"<br />
gpg: Can't check signature: No public key</code></div></div>It seems to be signed with a key as mentioned in <a href="https://blog.mobian.org/posts/2025/10/new-stable-rotating-keys/" target="_blank" rel="noopener" class="mycode_url">https://blog.mobian.org/posts/2025/10/ne...ting-keys/</a> but I can not get this key from any server.<br />
<br />
<a href="https://wiki.debian.org/Mobian/Verify" target="_blank" rel="noopener" class="mycode_url">https://wiki.debian.org/Mobian/Verify</a> still mentions:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>gpg --keyserver pgp.mit.edu ...</code></div></div> which seems to be down since 2023. But trying keyring.debian.org, keys.openpgp.org, keyserver.ubuntu.com, pool.sks-keyservers.net fails too.<br />
<br />
Where do I get the key to verify the latest Mobian images for PinePhone (sunxi)?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[compass pdf link expired: VTC AF8133J help]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20069</link>
			<pubDate>Thu, 06 Nov 2025 20:15:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20069</guid>
			<description><![CDATA[I'm working on a custom OS in Zig for the PinePhone v1.2b.  I am struggling to find some documentation on various parts of the hardware.  Today the compass.  I tried the I2C address for the AKM compass, and no response, so I am hoping I have the VTC compass, otherwise my TWI1 code is doing something very wrong <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
But I dont have the I2C address, and the documentation linked from the component page on the wiki has expired.  Can anyone shed some light on this please.  A good start would be the I2C address, but a copy of the data sheet would be best please.  I am unable to decode linux source tree structure to find this.<br />
<br />
Also, are the PinePhone sensors always powered, since DLD01 seems to be used everywhere.  For the LCD and touch I had to switch on some pio pins, but I dont see that on schematics, only EINT pins.  Iḿ worried about power usage from unused sensors.<br />
I am used to following <dvz_me_placeholder id="0" />  amazing tutorials, but I think he focuses more on new devices and didnt cover the sensors <img src="https://forum.pine64.org/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" />]]></description>
			<content:encoded><![CDATA[I'm working on a custom OS in Zig for the PinePhone v1.2b.  I am struggling to find some documentation on various parts of the hardware.  Today the compass.  I tried the I2C address for the AKM compass, and no response, so I am hoping I have the VTC compass, otherwise my TWI1 code is doing something very wrong <img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
But I dont have the I2C address, and the documentation linked from the component page on the wiki has expired.  Can anyone shed some light on this please.  A good start would be the I2C address, but a copy of the data sheet would be best please.  I am unable to decode linux source tree structure to find this.<br />
<br />
Also, are the PinePhone sensors always powered, since DLD01 seems to be used everywhere.  For the LCD and touch I had to switch on some pio pins, but I dont see that on schematics, only EINT pins.  Iḿ worried about power usage from unused sensors.<br />
I am used to following <dvz_me_placeholder id="0" />  amazing tutorials, but I think he focuses more on new devices and didnt cover the sensors <img src="https://forum.pine64.org/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wake up Call]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20061</link>
			<pubDate>Sun, 02 Nov 2025 18:37:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=21511">walter1950</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20061</guid>
			<description><![CDATA[Hello,<br />
<br />
<a href="https://medium.com/@mathias-steiner/mobile-linux-why-its-time-hasnt-come-yet-469dd60aee42" target="_blank" rel="noopener" class="mycode_url">https://medium.com/@mathias-steiner/mobi...9dd60aee42</a><br />
<br />
Ciao<br />
Walter]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
<a href="https://medium.com/@mathias-steiner/mobile-linux-why-its-time-hasnt-come-yet-469dd60aee42" target="_blank" rel="noopener" class="mycode_url">https://medium.com/@mathias-steiner/mobi...9dd60aee42</a><br />
<br />
Ciao<br />
Walter]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Slashdot re:Cellbright (PP and PPpro are always resistant by design)]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20059</link>
			<pubDate>Fri, 31 Oct 2025 10:15:43 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=19319">biketool</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20059</guid>
			<description><![CDATA[<a href="https://yro.slashdot.org/story/25/10/31/0028256/someone-snuck-into-a-cellebrite-microsoft-teams-call-and-leaked-phone-unlocking-details" target="_blank" rel="noopener" class="mycode_url">https://yro.slashdot.org/story/25/10/31/...ng-details</a><br />
<br />
<span style="font-style: italic;" class="mycode_i">"Someone recently managed to get on a Microsoft Teams call with representatives from phone hacking company Cellebrite, and then leaked a screenshot of the company's capabilities against many Google Pixel phones,"</span><br />
<br />
"<span style="font-style: italic;" class="mycode_i">The Support Matrix also shows Cellebrite's capabilities against Pixel devices running GrapheneOS, with some differences between phones running that operating system and stock Android. Cellebrite does support, for example, Pixel 9 devices BFU. Meanwhile the screenshot indicates Cellebrite cannot unlock Pixel 9 devices running GrapheneOS BFU."</span>]]></description>
			<content:encoded><![CDATA[<a href="https://yro.slashdot.org/story/25/10/31/0028256/someone-snuck-into-a-cellebrite-microsoft-teams-call-and-leaked-phone-unlocking-details" target="_blank" rel="noopener" class="mycode_url">https://yro.slashdot.org/story/25/10/31/...ng-details</a><br />
<br />
<span style="font-style: italic;" class="mycode_i">"Someone recently managed to get on a Microsoft Teams call with representatives from phone hacking company Cellebrite, and then leaked a screenshot of the company's capabilities against many Google Pixel phones,"</span><br />
<br />
"<span style="font-style: italic;" class="mycode_i">The Support Matrix also shows Cellebrite's capabilities against Pixel devices running GrapheneOS, with some differences between phones running that operating system and stock Android. Cellebrite does support, for example, Pixel 9 devices BFU. Meanwhile the screenshot indicates Cellebrite cannot unlock Pixel 9 devices running GrapheneOS BFU."</span>]]></content:encoded>
		</item>
	</channel>
</rss>