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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,976
» Latest member: georgeolive34
» Forum threads: 16,335
» Forum posts: 117,443

Full Statistics

Latest Threads
Pine Time dead
Forum: General Discussion on PineTime
Last Post: chris.burmajster
11 hours ago
» Replies: 0
» Views: 44
Booting Issues
Forum: PineNote Software
Last Post: vlagged
Yesterday, 04:17 PM
» Replies: 24
» Views: 18,891
App launcher shows tiny i...
Forum: PineNote Software
Last Post: vlagged
Yesterday, 04:12 PM
» Replies: 1
» Views: 1,023
Freezes and kernel panics...
Forum: Linux on RockPro64
Last Post: prahal
04-15-2026, 06:48 PM
» Replies: 4
» Views: 1,265
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 216
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 8,838
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 315
Charging problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
04-04-2026, 07:30 AM
» Replies: 0
» Views: 143
Latest firmware for PineP...
Forum: PinePhone Software
Last Post: baptx
04-03-2026, 08:37 AM
» Replies: 106
» Views: 217,688
Updates have gotten me ex...
Forum: General Discussion on PineNote
Last Post: bills2002
04-02-2026, 05:16 PM
» Replies: 0
» Views: 270

 
  Issue tracking?
Posted by: geokon - 11-07-2019, 09:00 PM - Forum: General Discussion on Pinebook Pro - Replies (14)

Is there some central place where outstanding issues are being tracked?

I received the laptop a few days ago and a few minor things aren't quite working and a few things remain unclear - but I don't know what's a known issue, an unreported issue, an issue with the OS, or an issue with my laptop is particular.

I'm unclear on whether I should be posting things here, on Github issues, or on the wiki

At the moment I'll post what I have here, but please let me know if there is a better place:

- Using a USB-C cable to connect a T3 Samsung SSD to the one USB-C port doesn't work. `dmesg` does show that a USB device is connected but no device shows up in the file browser. If I connect the drive with a USB-A to USB-C cable to a normal type-A port then the drive shows up correctly


- If I record in Audacity the microphones show up as stereo, but the two channels are identical (the dual microphone setup was a very welcome surprise - looking forward to it working)

- If you don't run X11 you can't adjust the screen brightness with the Fn keys from the console

- I've never had a machine with both USB-C and a power plug. If I unintentionally plug in the power cable while charging through USB-C - will this potentially fry the machine? Is this something I need to be watching out for? Or will this even charge my machine faster..? The laptop came with a wallwart, but it'd be nice to just only run off of ubiquitous USB chargers - I don't know if this is advisable

- In the default OS there is a a frequency regulator in the main panel. I've never seen a menu like this before on any other machine, but it seems potentially quite useful. In particular I'd like to do performance benchmarks of some software I'm working on and I'd like to avoid external factors like thermal throttling, "turbo" modes and whatnot, so running slower but consistent would be very useful for getting repeatable results- however there is not a lot of info in the Help menu. The different profiles don't have any explanation and I'm unclear on what will happen if I manually select a high frequency. Will this risk overheating and damaging the computer?

There is also the whole "big-little" architecture and I'm not sure how scheduling happens for that - is there some place I can find more info? Maybe a way to temporarily disable the little cores when running certain jobs?

Thanks for all the help, the great community and the fantastic laptop,
Really looking forward to where this is all going Smile


  Left-side USB 3.0 port not working
Posted by: diodelass - 11-07-2019, 07:22 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (6)

I've been having trouble getting my Pinebook Pro's left-hand USB port, the large Type-A one with the blue interior and superspeed pins, to work at all. I can get power from it alright (though no data on whether negotiation is working yet), but nothing I plug into it enumerates or shows up in `lsusb`, nor does `dmesg` show any events. This applies to both USB-2.0-only devices, as well as those that support USB 3.0. The other USB ports - the Type-C one, and the 2.0 Type-A one on the right side, are both working just fine, so I'm suspecting the hardware here. I'm mainly posting this thread to ask if anyone else can confirm that their 3.0 port works, just so we can narrow it down to a spurious defect in my particular unit (one that I, confident with a soldering iron, might repair) or a more general design flaw or firmware bug that needs more professional attention.

So, does your left Type-A USB port work?


  Whine when playing video
Posted by: phuzy - 11-07-2019, 06:54 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (30)

Noticing that the PBP emits a whine whenever video is playing.

The whine disappears shortly after the video is paused or stopped.

Anyone else noticing the same?


Information A hint to help with suspend-related issues
Posted by: diodelass - 11-07-2019, 04:09 PM - Forum: General Discussion on Pinebook Pro - No Replies

I'm posting this here because I just fixed an irritating issue on my Pinebook Pro and want others to be able to do the same if/when it affects them.

If you've put your Pinebook Pro to sleep and returned to it later, you may have noticed that there are sometimes things broken when it wakes back up. On mine, the keyboard layout modifications I've set using xmodmap (converting caps lock to a second escape, and the |\ key right beside left shift to be an additional left shift, since I'm used to the wider key provided on ANSI keyboards) all get reset back to defaults, and my trackpad stops responding to taps. Both of these were cramping my style enough that was just electing not to use suspend at all.

The solution to these problems is just to run two commands:

Code:
xinput set-prop "HAILUCK CO.,LTD USB KEYBOARD Touchpad" "libinput Tapping Enabled" 1
to enable touchpad taps, and
Code:
xmodmap ~/.Xmodmap
to set my keymap modifications in X.

However, in order to make these happen automatically, we need a way to run commands - which, unfortunately, have to happen within the domain of X - right after the computer resumes from sleep mode. This is a bit more complicated than it should be, but don't worry, I figured that out too.

Step 1: as root, open a new text file in your favorite editor at /etc/systemd/system/resume@.service, and put in these lines:
Code:
[Unit]
Description=User suspend actions
After=suspend.target

[Service]
User=%I
Type=forking
Environment=DISPLAY=:0
ExecStart=/home/%I/.resume.sh

[Install]
WantedBy=suspend.target

Next, run these commands, also as root:
Code:
systemctl daemon-reload
systemctl enable resume@diodelass
(with your name instead of mine after the @, of course!)

Step 2: create the file .resume.sh in your home directory, and mark it executable (chmod +x .resume.sh).
My .resume.sh looks like this now:
Code:
#!/bin/bash

# hold for five seconds to allow the keyboard and touchpad to renumerate
sleep 5

xinput set-prop "HAILUCK CO.,LTD USB KEYBOARD Touchpad" "libinput Tapping Enabled" 1
xmodmap ~/.Xmodmap

Your commands can, of course, be whatever you need. I don't know what other problems with suspending there are on the Pinebook Pro yet, but this little bit of plumbing gives you what you need to put your fixes into action as soon as you know what they are; once you've found a command to fix the resume-related problem, you can simply drop it into .resume.sh and it will be run every time your machine wakes up.

Best of luck to everyone in getting your new system tweaked to perfection!


  Power measurements
Posted by: jpakkane - 11-07-2019, 03:52 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (25)

I measured the power usage over a day using the Mate power daemon. This is what it plotted.


.png   pbpro_power.png (Size: 67.21 KB / Downloads: 792)

It seems that charging via USB-C is almost as efficient as using an actual charger. The suspend one is weirder: it uses energy as much as a charger can put in the battery. I entered suspend by clicking on the power button and then selecting suspend on the pop up menu. Obviously something is not being properly powered down. This is with the default Debian image.


  Does anyone know what DAC or DAC's the PBP uses ?
Posted by: deebeez - 11-07-2019, 03:26 PM - Forum: Pinebook Pro Hardware and Accessories - No Replies

In my quest to fix my sound, I happened to notice in alsamixer a bunch of settings and two of which happened to be LDAC and RDAC... Seems like it uses 2 DACS, one for left channel and one for right channel. in the name of the sound card/board, the first 2 letters state "es". I wonder, if it uses 2 ESS dacs, anyone know which brand DAC's the PBP uses or have a good picture of the motherboard ? Thanks


Found the schematic for the mobo. Looks like its an Everest Semiconductor ES8316 codec. I'll have to look up the specs on the manufacturer website. So not an ESS Sabre or something. lol


  You toggled wrong switch - Pinebook Pro will not power on
Posted by: hmuller - 11-07-2019, 01:25 PM - Forum: Pinebook Pro Hardware and Accessories - No Replies

For those of you using the headphone UART cable:

If you toggle the eMMC enable/disable switch by mistake your Pinebook Pro may not power on.

To resolve this toggle the eMMC switch back towards the hinge to enable eMMC. And then press the reset button. The device should now power on.

You will now find these instructions in the wiki.


  Size of Keys / Stickers for Umlaute
Posted by: stefan.schumacher - 11-07-2019, 12:17 PM - Forum: Pinebook Hardware and Accessories - Replies (2)

Hello,

what is the exact size of the Pinebook Pro's Keys? I want to order ISO and then a set of these (https://www.amazon.de/Lacerto%C2%AE-14x1...160&sr=8-7) and then re-label the Keyboard to German. For this I need to know the exact key size.

Yours sincerely
Stefan


  Forum Login Failure
Posted by: neilman - 11-07-2019, 10:26 AM - Forum: General - Replies (3)

Seem to have a problem logging in today with Firefox (#70) on Apple iMac starting this afternoon in spite of working perfectly for ages up to this morning.

At some point this afternoon the [LOGIN] and [REGISTER] buttons appeared at the top of the page and clicking login takes me to the usual login box (pre-filled by browser but I have also tried retyping)

Clicking on the Login button returns me to the forum still not logged in but with a message 

"Authorization code mismatch. Are you accessing this function correctly? Please go back and try again."

On this same computer, using Chrome browser and the same login credentials, login is perfect. 

Any idea what is going on here?


Question Will purchasing an NVMe SSD noticably improve performance
Posted by: User 11436 - 11-07-2019, 09:32 AM - Forum: Pinebook Pro Hardware and Accessories - Replies (22)

Hi,

I've been tinkering with my PBP for the past few days now (mostly with the system monitor open). I'm happy enough with the current performance, but I've been wondering where the primary performance bottleneck lies in the PBP. Is it the eMMC interface? If so, I take it that purchasing an NVMe SSD would noticeably speed things up?

Ben