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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,205
» Latest member: davidmuskly
» Forum threads: 16,119
» Forum posts: 116,574

Full Statistics

Latest Threads
New pinetab2 - can't char...
Forum: General Discussion on PineTab
Last Post: tmhorne
Yesterday, 12:42 PM
» Replies: 10
» Views: 1,482
Calls on ppp
Forum: PinePhone Pro Software
Last Post: chbwzxgk
Yesterday, 11:54 AM
» Replies: 2
» Views: 96
Case for the rock64 that ...
Forum: Rock64 Hardware and Accessories
Last Post: tophneal
Yesterday, 07:32 AM
» Replies: 2
» Views: 1,150
SOQuartz64 4GB CM & Waves...
Forum: Quartz64 Hardware and Accessories
Last Post: Nicholas97
Yesterday, 02:35 AM
» Replies: 3
» Views: 2,152
Pinephone + Keyboard for ...
Forum: PinePhone Hardware
Last Post: FONJGS55
05-11-2025, 07:51 AM
» Replies: 8
» Views: 1,612
Page turner for PineNote ...
Forum: PineNote Software
Last Post: macmartin
05-09-2025, 09:10 AM
» Replies: 0
» Views: 145
bookworm vs trixie discus...
Forum: Mobian on PinePhone
Last Post: anonymous
05-09-2025, 08:22 AM
» Replies: 61
» Views: 15,987
How to improve KDE plasma...
Forum: PineTab Software
Last Post: Kevin Kofler
05-08-2025, 05:02 PM
» Replies: 2
» Views: 193
Star64 Irradium (based on...
Forum: Getting Started
Last Post: mara
05-07-2025, 04:20 PM
» Replies: 4
» Views: 2,055
Star64: GPU firmware load...
Forum: Getting Started
Last Post: mara
05-06-2025, 11:44 AM
» Replies: 15
» Views: 10,286

 
Exclamation Adding of WiFi/BT board causing reboots
Posted by: mmb - 06-14-2016, 08:44 PM - Forum: Remix OS - Replies (7)

After reading all the hell people were going through getting their boards up, I decided to keep it simple and focused on getting my A64+ booting RemixOS without any additional modules.  Just Ethernet, HDMI and power.  I didn't even solder on the power and reset buttons yet.  After a few hours of close reading of the forums (the wiki is next to useless), I was able to get RemixOS up and running.  Hooray!

I opened a bunch of apps, watched a movie via Netflix and all seemed to be going well.

Then I tried to install a 4K video player from the Play Store and it failed claiming I wasn't authorized.  On a hunch, I thought it might be related to the lack of location data, so then I tried installing the Pine WiFi/BT module and trouble started.

Predictably, there are zero instructions, but it seemed simple enough given it really only fits one way.  So I popped the W/BT board on the header pins and plugged in the power.  The Pine A64 logo immediately appeared on the screen and about 5 seconds later, the screen lost sync, went black, before the Pine logo appeared again.  And again. And again.  It loops indefinitely...

Anyone have a work around for this?



Thanks,
MMB


  Debian Video Performance/"Driver" Install
Posted by: Fawks - 06-14-2016, 07:23 PM - Forum: Debian - Replies (8)

So basically I've installed the debian image form the downloads page of the pine64 website, and everything went perfectly. Only problem I have is that video performance is horrible. (lagging animations, choppy youtube video, downloaded video files won't open, etc) Pretty sure I need to install a codec to play the video files - haven't gotten around to installing the codecs or VLC. I'm assuming there's a driver I need to install for the gpu. I tried installing one, and got confused (kinda new to this), so any help is greatly appreciated Smile


  How to set HDMI output to less than 720p?
Posted by: Kattemageren - 06-14-2016, 05:24 PM - Forum: Android on Pine A64(+) - Replies (1)

Hi all, totally new here at the forum so bear with me !

I am so far very pleased with the Pine 64 but I have plans of hooking it up to an old TV through a HDMI to VGA converter. The problem is that the TV does not (of course) support 720p. 

So I am looking for some way of setting the HDMI output to, say, 800x600 or less? I have read posts about the build.prop file but no examples on actually doing this!

Could someone please help me out or maybe explain why this is possible / not possible? 

Thanks !


  longsleep installed headers for dkms usage
Posted by: Faye - 06-14-2016, 04:18 PM - Forum: Linux on Pine A64(+) - Replies (4)

I tried to build the realtek bluetooth driver by checking out the github for my version and applying the config.gz before running make modules and it still thinks the version is different.  Can you supply a kernel headers tarball for use with dkms?

I have fixed up the Makefile (I think) and created a dkms.conf file to allow for automatic module compilation but it complains about symbol versions not being identical.

Code:
ubuntu@fjords:~$ cat /usr/src/rtk_btusb-v0.8/Makefile
FW_DIR    := /lib/firmware/rtk_bt
MDL_DIR    := /lib/modules/$(shell uname -r)
DRV_DIR    := $(MDL_DIR)/kernel/drivers/bluetooth

ifneq ($(KERNELRELEASE),)

    obj-m := rtk_btusb.o
    KVER := $(KERNELRELEASE)
    KDIR := /lib/modules/$(KVER)/build

else
    PWD := $(shell pwd)
    KVER := $(shell uname -r)
    KDIR := /lib/modules/$(KVER)/build
endif

all:
    $(MAKE) -C $(KDIR) M=$(PWD) modules

clean:
    rm -rf *.o *.mod.c *.mod.o *.ko *.symvers *.order *.a

install:
    mkdir -p $(FW_DIR)
    cp -f rlt8723a_chip_b_cut_bt40_fw_asic_rom_patch-svn8511-0x0020342E-20121105-LINUX_USB.bin $(FW_DIR)/rtk8723a.bin
    cp -f rtl8723a_config.bin $(FW_DIR)/.
    cp -f rtk_btusb.ko $(DRV_DIR)/rtk_btusb.ko
    depmod -a $(KVER)
    @echo "install rtk_btusb success!"

uninstall:
    rm -f $(DRV_DIR)/rtk_btusb.ko
    dumped -a $(KVER)
    rm -f $(FW_DIR)/rtk8723a.bin
    echo "uninstall rtk_btusb success!"
ubuntu@fjords:~$ cat /usr/src/rtk_btusb-v0.8/dkms.conf 
MAKE="make all
INCLUDEDIR=/lib/modules/$kernelver/build/include"
MAKE_smp="make SMP=1 all
INCLUDEDIR=/lib/modules/$kernelver/build/include"
DEST_MODULE_LOCATION="/kernel/drivers/bluetooth/rtk_btusb"
PACKAGE_NAME="rtk_btusb"
PACKAGE_VERSION="v0.8"
REMAKE_INITRD="no"
MODULE_NAME="rtk_btusb.o"
CLEAN="make clean"
Of course I might just be using the wrong driver for the Pine64, I was basing it off the wlan driver.


  boot stuck
Posted by: george - 06-14-2016, 03:44 PM - Forum: Remix OS - Replies (1)

finally i got my 2GB pine with wifi module . i used 32g samsung evo . downloaded remix dd 2 and coudnt flash it using phoenix , i used win32 for flashing.
all what i got is remix logo and nothing else .
btw i plugged 2amps power supply. 


any help would be appreciated


  512 and 7" touch screen?
Posted by: ShreddinPB - 06-14-2016, 02:04 PM - Forum: POT modules - Replies (4)

Hi guys, I got the 512 and added on the 7" touch screen. I do not see a way to connect the two. I see a couple places where there should be connectors for this screen but there isnt one. Does the 512 not support the screen? I dont remember seeing anything when I selected my rewards that said the two wont work together.

Thanks!


Sad HDMI to DVI Color issues?
Posted by: leatherlips - 06-14-2016, 01:43 PM - Forum: HDMI Port - Replies (5)

I recently received my 64+ board and have loaded Debian on it successfully using an HDMI cable to my TV. 
I then tried the same HDMI cable connected to an HDMI to DVI Adapter to my computer monitor and while I can operate the system, it has a purple/pink tint to the entire screen. 
I've tried various cables with same result.  I tried the DVI connector with same HDMI cable on another system (lattepanda windows board) and it worked fine (no tint).

Is there a setting or something I need to set on this board to get it to work properly via a DVI connector?

Any help is appreciated.

THANKS


  Android can not see my bluetooth mouse
Posted by: Punkyclown - 06-14-2016, 01:32 PM - Forum: Android on Pine A64(+) - Replies (5)

Hi All, having an issue getting bluetooth to see my 3.0 mouse.  It see things like IT IS the remote device and it will connect
to, my Nexus player, my Macbook, and like that.  But doesn't seem to recognize an INPUT device.  Any suggestions?
Thanks for the help.
Brad Hansen


Question Play Store Searches
Posted by: pwneboi - 06-14-2016, 11:18 AM - Forum: Android on Pine A64(+) - No Replies

Is there a setting or some way to remove phone versions of applications from play store searches like I can do on the app store? Kind of a pain when you find 30 similarly named apps and don't want to wade through descriptions or install to find out it was designed for phone.


  Address Change
Posted by: monmoonmooonmoooon - 06-14-2016, 08:59 AM - Forum: Shipment Related Discussion - Replies (5)

Hey guys,

This is the thing, when I make the order I thought I will stay in my house, or it would arrive sooner.

I will change of house in the end of next month, Is possible to change the address?

Thanks