Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 30,199
» Latest member: realrebbit06
» Forum threads: 16,382
» Forum posts: 117,593

Full Statistics

Latest Threads
Fixing the Quartz64 USB3 ...
Forum: Quartz64 Tutorials
Last Post: mig
7 hours ago
» Replies: 1
» Views: 12,742
Pinecil as a Pocket-Sized...
Forum: General
Last Post: Arsen
Yesterday, 09:15 AM
» Replies: 0
» Views: 45
SlateOS feedback needed!
Forum: Development Discussion on PineTime
Last Post: highjumpman
08-24-2026, 08:00 AM
» Replies: 0
» Views: 122
Pinephone + Keyboard for ...
Forum: PinePhone Hardware
Last Post: Nambo
08-23-2026, 12:17 AM
» Replies: 18
» Views: 13,486
Hello, I am a new member ...
Forum: General
Last Post: WhiteRabbit0
08-20-2026, 12:17 PM
» Replies: 0
» Views: 320
Need help compiling andro...
Forum: Android on Pine A64(+)
Last Post: ahegarosib97
08-20-2026, 08:45 AM
» Replies: 2
» Views: 1,998
RAM-free SBCs with SODIMM...
Forum: General
Last Post: anchor
08-20-2026, 08:21 AM
» Replies: 0
» Views: 142
Default password
Forum: PineTab Hardware
Last Post: dissimilar_goose
08-20-2026, 05:02 AM
» Replies: 0
» Views: 187
New SlateOS features
Forum: Development Discussion on PineTime
Last Post: highjumpman
08-17-2026, 07:47 PM
» Replies: 0
» Views: 234
SlateOS for PineTime
Forum: Development Discussion on PineTime
Last Post: highjumpman
08-17-2026, 07:33 PM
» Replies: 2
» Views: 509

 
  Anyone thinking about putting a RISC-V CPU in a watch?
Posted by: Darin755 - 03-18-2025, 12:43 PM - Forum: General - Replies (1)

I was looking at the chip in the Ox64 and I think it is kind of interesting that it can do video output. Anyone tried building a watch around it? I like the idea of having a little more hardware capabilities in a watch but I don't care for the "modern" watches. Right now I have a BangleJS 2 and it works ok but the software is unpolished and buggy. Also the battery life isn't great since Javascript adds a lot of overhead. I think it would be cool if there was a watch that could utilize something a little more mainstream like Linux to speed up development. Since the chip has Wifi you could control it via a web server and it could pull down apps and install updates.

This is really just a random thought I had the other day so it is probably flawed. However, I wish we had a watch with a open ecosystem.


  postmarketOS / sxmo
Posted by: magdesign - 03-16-2025, 04:40 PM - Forum: PineNote Software - No Replies

is anyone successfully running postmarketOS on a Pine Note?
if yes, do you think i could run sxmo on it (sway, wayland?)


  Quectell M95A-02-NCH-STD
Posted by: muhammet.51 - 03-16-2025, 08:23 AM - Forum: General - No Replies

Merhaba, yaşadığım sorundan bahsetmek istiyorum. 100 veya daha fazla sahip olduğum bu modülde IMEI sorunu yaşıyorum. Ülkemizde 1 yıl boyunca sinyal alamayan cihazlar bakanlık tarafından otomatik olarak kapatılıyor. Ve bunu açmak için ithalatçı olmanız gerekiyor ancak biz bu ürünleri ikinci el aldık. Şimdi IMEI'yi değiştirmem gerekiyor. Bunu nasıl ve hangi uygulamalarla kullanıma açabilirim?


  [Article] Porting Apache NuttX RTOS to Avaota-A1 SBC (Allwinner A527 SoC)
Posted by: lupyuen - 03-15-2025, 03:45 PM - Forum: General - Replies (2)

This article explains how we ported Apache NuttX RTOS from QEMU Arm64 to Yuzuki Avaota-A1 SBC based on Allwinner A527 SoC ... Completed within 24 Hours!

We're ready for volunteers to build NuttX Drivers for Avaota-A1 / Allwinner A527 (GPIO, SPI, I2C, MIPI CSI / DSI, Ethernet, WiFi, ...) Please lemme know, maybe we can draw something on the Onboard LCD! ?

Check out the article: https://lupyuen.org/articles/avaota.html

[Image: avaota-title.jpg]

Lup


  Flashing
Posted by: chris.burmajster - 03-15-2025, 10:59 AM - Forum: General Discussion on PineTime - Replies (2)

Hello Everybody,

Please don't get mad, but exactly how do I flash my PineTime? I have it here with my Linux computer and my Volla X23 Ubuntu phone and I can't figure out how to flash it. Please help.

Chris


  best way to get a stuck sd card out?
Posted by: elix - 03-13-2025, 02:41 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (3)

so i have always had problems with the micro sd card in my pinebook pro.
the micro sd card is now stuck and i wanna switch distros.
i tried the old knife method, etc. but ended up screwing up the outer part of the card.
is my next bet to the case off and get it out that way?
not sure its even safe to use the card at this point.

thanks


  PinePhone Pro disable Volume Buttons when malfunctioning
Posted by: ArchBene - 03-12-2025, 05:51 PM - Forum: PinePhone Pro Hardware - Replies (1)

Hi together,

here comes a solution for a problem I had with the PinePhone Pro, hoping that it helps someone else. When I started installing different distributions, there was the same problem all over again. The volume buttons were randomly sending signals to the phone although I didn't press them, constantly changing the volume. This was very annoying as the pop-up message interrupted anything I wanted to do on the phone. After some research I found the following work around. Tested it on Arch with Phosh and on Manjaro with Plasma Mobile, but should work on other distros too. The solution works by unbinding the volume keys from the driver. The volume keys will stop working then, but the power key can still be used normally. Up to now I didn't miss the volume keys, as it can easily be adjusted in the settings. You can find more information about driver unbinding in this article: https://lwn.net/Articles/143397/

First open a terminal and issue the following command to stop the nuisance:

Code:
sudo echo -n "adc-keys" > /sys/bus/platform/drivers/adc_keys/unbind

Now to permanently deactivate the volume keys on startup we can create a systemd-service.
All of the following code-snippets should be executed as root-user.
First create the shell-script, for example in /opt or wherever you like to have it:

Code:
cat > /opt/unbind-adc-keys.sh << EOF
#!/bin/bash

echo -n "adc-keys" > /sys/bus/platform/drivers/adc_keys/unbind

exit 0

EOF

Don't forget to give execute permissions:

Code:
chmod a+x /opt/unbind-adc-keys.sh

Now create the systemd service unit:

Code:
cat > /etc/systemd/system/unbind-adc-keys.service << EOF
[Unit]
Description=Unbinds the Volume Keys on startup

[Service]
ExecStart=/bin/bash /opt/unbind-adc-keys.sh

[Install]
WantedBy=mulit-user.target

EOF

Now enable the service unit:

Code:
systemctl enable unbind-adc-keys.service

From now on the volume keys should be disabled from startup and you can again enjoy your PPP :-)


  Pinebook pro bricked?
Posted by: michaelmoua - 03-11-2025, 09:04 PM - Forum: General Discussion on Pinebook Pro - Replies (4)

Hello,
my pinebook pro stopped working. When I plug it in, the red light on the connector turns on, but pressing the power button does nothing. Here’s what I’ve tried:

  1. Holding the power button down for over 30 seconds
  2. Bypassing the battery by disconnecting it and bridging the two connectors
  3. Removing the eMMC and attempting to boot from an SD card

None of these solutions have worked, and the power light remains off (neither red nor green). Any assistance would be appreciated!


  contact sales pinephone
Posted by: janjansen1312 - 03-11-2025, 04:44 PM - Forum: General Discussion on PinePhone - Replies (2)

how can i get in touch whit pine64 wholesale
i have send multi emails but no replay
is this normal that you not get replay from pine64


  Rock Pro 64 Won't power on
Posted by: matthewmkr - 03-11-2025, 03:49 PM - Forum: General Discussion on ROCKPRO64 - Replies (9)

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 https://github.com/ayufan-rock64/linux-b...ash-spi.md , but it won't power on, so I doubt it's doing anything.

Tried following this advice as well and still nada https://www.reddit.com/r/PINE64official/...mc_or_usd/


Video of symptoms: https://youtube.com/shorts/jDHW6B4bH5g?feature=share