04-12-2020, 11:21 AM
Does anyone else still have issues with keyboard inputs registering as double-presses on occasion still? Despite the updates from Pine64 I still get issues. It's happened twice while writing this.
Pinebook Pro Revised Keyboard Firmware
|
04-12-2020, 11:21 AM
Does anyone else still have issues with keyboard inputs registering as double-presses on occasion still? Despite the updates from Pine64 I still get issues. It's happened twice while writing this.
Hi there, don't wanna make a separate thread (yet), so I'll just ask here:
Is there any known fix for CTRL+SHIFT+TAB key combo not working? (note works with right-shift) While not crucial, I rely on this heavily to skip around between tabs in Chromium, and it's super frustrating. Also, @"Feakster" : Yup, I'm still getting occasional double keys. I've just installed the newest Manjaro build, KDE variant, SD-to-eMMC installer, if anyone's wondering.
04-13-2020, 04:50 AM
(04-12-2020, 01:48 PM)tsago Wrote: Hi there, don't wanna make a separate thread (yet), so I'll just ask here: Glad it's not just me then. I'm using Manjaro KDE too, but need to reinstall, as the latest update had a lot of changes. Mildly irritating as I only just reinstalled it about a month ago.
04-13-2020, 01:44 PM
I see double-presses, but pretty rarely, less than one in five hundred presses. My motor functions are noisy enough that I can't be sure it's not just me being too shaky and physically double-pressing the key.
04-13-2020, 06:07 PM
(01-22-2020, 03:18 PM)jackhumbert Wrote: Hey all! Hello Mr. Hubert, I spoke a month or more about the issues that I had after the initial update of my PineBook Pro. After my keyboard firmware update, keyboard (US) type out the wrong letters and some option to have full access t my keyboard didn't work at all. Thank you for any assistance you can give me. Lucy.
05-07-2020, 08:18 PM
@jackhumbert great work on this firmware - I'm also a fan of qmk too
I'm curious if there's any way to bind the trackpad toggle (e.g. normally Fn+F7) to use a single key. E.g. I rarely use the right alt key so I want to bind that key (single press / no modifiers) to just toggle the trackpad. I tried a few different things like using `R(MS_ACCEL1)` and also alternatively swapping reg_specials [5] = REG_FN(KC_F7, 0xFE) // toggle touchpad to be [5] = REG_FN(0xFE, 0xFE) // toggle touchpad and then using FS(5) in place of the right Alt key. But neither of these approaches worked. Is there something simple I'm missing?
06-22-2020, 09:56 PM
Is there any possibility to enable LCTRL+LSHIFT+TAB and FN+RSHIFT+BACKSPACE (delete things in KDE)?
3 keys in general seem to work fine, like LCTRL+LSHIFT+T. Or maybe tab / backspace are wired differently? Don't know that much about keyboards
07-18-2020, 12:25 AM
Thanks a lot Jack Imbert for your hard work, using it for a week on my ANSI kbd, and it's really great to recover alt + arrows key combination working. Nice job !
07-29-2020, 02:54 PM
Thanks a ton Jack
Is there a way to make Fn+F3 do what is suggested by its icon? I think it should send KEY_SWITCHVIDEOMODE defined in /usr/include/linux/input-event-codes.h file, but I can't find anything similar in include/keycodes.h.
EDIT: OK, I 've figured it out. First I've changed keyboard firmware so it would send F15 when Fn+F3 is pressed, it will send 6a, then I've created file /etc/udev/hwdb.d/90-usb-kbd-custom.hwdb with contents: Code: evdev:input:b0003v258Ap001E* Now Fn+F3 works like Meta+P (in KDE). I've tried with 0xBF because it was not used, but it was not send, either. |