| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 30,083
» Latest member: alireza23
» Forum threads: 16,360
» Forum posts: 117,521
Full Statistics
|
| Latest Threads |
Mobian MMS/SMS text probl...
Forum: Mobian on PinePhone
Last Post: mehdy
9 hours ago
» Replies: 16
» Views: 33,876
|
Android Gaming Image
Forum: Game Station Emulation
Last Post: Mary_Davis
Today, 01:14 AM
» Replies: 51
» Views: 110,396
|
OpenTTD game - Error: no ...
Forum: Mobian on PinePhone
Last Post: Mary_Davis
Today, 01:12 AM
» Replies: 3
» Views: 5,500
|
Libby - ebook reader that...
Forum: PineNote Software
Last Post: Mary_Davis
Today, 01:04 AM
» Replies: 5
» Views: 3,712
|
Game Controllers
Forum: Game Station Emulation
Last Post: Mary_Davis
Today, 01:02 AM
» Replies: 26
» Views: 69,143
|
Pinecil low temp mods?
Forum: General Discussion on Pinecil
Last Post: davidcoley
06-21-2026, 02:53 AM
» Replies: 0
» Views: 74
|
can't find pam library
Forum: General Discussion on PinePhone
Last Post: fxkl47BF
06-20-2026, 06:04 PM
» Replies: 0
» Views: 116
|
Updated Pinebook Pro?
Forum: General Discussion on Pinebook Pro
Last Post: tantamount
06-20-2026, 10:14 AM
» Replies: 2
» Views: 817
|
pmos firewall
Forum: General Discussion on PinePhone
Last Post: fxkl47BF
06-20-2026, 08:40 AM
» Replies: 0
» Views: 82
|
"USB access to SD" disapp...
Forum: General Discussion of PinePhone Pro
Last Post: jebez
06-19-2026, 06:40 PM
» Replies: 0
» Views: 189
|
|
|
| Wifi Module |
|
Posted by: Anunnaki - 04-14-2016, 08:44 PM - Forum: Wifi/BT Module
- Replies (4)
|
 |
So I've got my system up and running with Android, and I cant figure out how to get the wifi to work. Maybe i've installed it wrong. You only have to connect the module to the board right? Also the cord thing looks like it might be a sticker? What sup with that?
(04-14-2016, 08:44 PM)Anunnaki Wrote: So I've got my system up and running with Android, and I cant figure out how to get the wifi to work. Maybe i've installed it wrong. You only have to connect the module to the board right? Also the cord thing looks like it might be a sticker? What sup with that?
I had it in backwards. Posting from the device.
|
|
|
|
| UART2 on PI header (pin 8 and 10) |
|
Posted by: martinayotte - 04-14-2016, 07:38 PM - Forum: Pi2, Euler and Exp GPIO Ports
- Replies (8)
|
 |
If you wish to interact with UART2 on PI header (pin 8 and 10), you will maybe find soon that /dev/ttyS2 that isn't available.
The problem is only that it is not enabled into the DTB.
You can fix that by doing (along with backups)
Code: mv /boot/pine64/sun50i-a64-pine64-plus.dtb /boot/pine64/sun50i-a64-pine64-plus.dtb-ORIG
dtc -I dtb -O dts -o sun50i-a64-pine64-plus.dts /boot/pine64/sun50i-a64-pine64-plus.dtb-ORIG
Then edit the "sun50i-a64-pine64-plus.dts" and change "disable" to "okay" in the "status" of the "uart@01c28800" paragraph !
Push the change back into binary :
Code: dtc -I dts -O dtb -o /boot/pine64/sun50i-a64-pine64-plus.dtb sun50i-a64-pine64-plus.dts
Then, reboot !
you should now have the /dev/ttyS2 working !
|
|
|
|
| Python GPIOs |
|
Posted by: martinayotte - 04-14-2016, 07:23 PM - Forum: Pi2, Euler and Exp GPIO Ports
- Replies (3)
|
 |
I wished to control GPIO with python !
I've tried to use the same library I'm used to on A20, so, I've copied pyA20-0.2.1 from my Olimex board into my PinA64.
Compile it and try it out ... Segmentation fault !
Digging with GDB, I've figured it out : some pointers were 32bits while we are now on 64bits plateform !
Here are the changes to achieve :
Code: root@pineA64:~# diff pyA20-0.2.1/pyA20/gpio/gpio_lib.c~ pyA20-0.2.1/pyA20/gpio/gpio_lib.c
67c67
< SUNXI_PIO_BASE = (unsigned int) pc;
---
> SUNXI_PIO_BASE = (unsigned long) pc;
root@pineA64:~# diff pyA20-0.2.1/pyA20/gpio/gpio_lib.h~ pyA20-0.2.1/pyA20/gpio/gpio_lib.h
123c123
< extern unsigned int SUNXI_PIO_BASE;
---
> extern unsigned long SUNXI_PIO_BASE;
|
|
|
|
| Getting Android source under version control |
|
Posted by: jonsmirl - 04-14-2016, 03:38 PM - Forum: Android on Pine A64(+)
- Replies (4)
|
 |
If people are going to contribute code back to Pine, the source has to get under version control. Without version control is is chaos to contribute code back since you never know what to base it off from.
Currently you are posting tarballs...
http://wiki.pine64.org/index.php/Pine_A6...SP_Related
Some places like Gitlab allow repos up to 10GB in size. Can someone from Pine get this code checked into a version control system? Pine people need to do this so that you will be the owner of the accounts.
Maybe an Android expert can help out with this. If should be possible to do a reposync to the main AOSP repository and then apply only the deltas needed for Allwinner A64 and Pine support. These device specific delta should be fairly small. Is someone experienced at turning these tarballs back into deltas against the AOSP repos?
|
|
|
|
| WiFi module causes boot loop |
|
Posted by: BnEc - 04-14-2016, 01:51 AM - Forum: Getting Started
- Replies (17)
|
 |
So I received my pine the other day, it looks amazing though I'm slightly disappointed, I had added to my pledge the WiFi module and that lovely looking acrylic case.
No case in the package but everything else was present. However having formatted a 32Gb Samsung SD card with archlinux veriant, I have found that if the WiFi module is plugged in to the board it refuses to boot, it goes through the process of loading the kernal, then just restarts always at the same point. However if I remove the WiFi module, happy days it boots fine.
Any suggestions would be welcome. Or if this a case of the WiFi module being DOA?
|
|
|
|
| Question about Ubuntu |
|
Posted by: skardoska - 04-14-2016, 01:39 AM - Forum: Linux on Pine A64(+)
- Replies (12)
|
 |
I'm currently using the Ubuntu image of Longsleep but I'm getting these errors and it takes quiet sometime then to boot. Is this normal or a bug and is there anyway how I can fix this?
|
|
|
|
|