Difference between revisions of "NanoPi 2 Fire"

From FriendlyELEC WiKi
Jump to: navigation, search
(updated by API)
(updated by API)
Line 177: Line 177:
 
* A Host running Ubuntu 16.04 64 bit system
 
* A Host running Ubuntu 16.04 64 bit system
  
===TF Card We Tested===
+
{{ResizeTFCardFS|NanoPi2-Fire}}
To make your NanoPi 2 Fire boot and run fast we highly recommend you use a Class10 8GB SDHC TF card or a better one. The following cards are what we used in all our test cases presented here:
+
{{S5Pxx18HDMI|NanoPi2-Fire|arch/arm/plat-s5p4418/nanopi2/lcds.c}}
*SanDisk TF 8G Class10 Micro/SD TF card:
+
{{S5Pxx18MofidyKernelCommandLineOnHostPC|NanoPi2-Fire|sd-fuse_nanopi2}}
[[File:SanDisk MicroSD.png|frameless|100px|SanDisk MicroSD 8G]]
+
{{NanoPCStartToUse|NanoPi2-Fire}}
*SanDisk TF128G MicroSDXC TF 128G Class10 48MB/S:
+
{{FriendlyCoreGeneral}}
[[File:SanDisk MicroSD-01.png|frameless|100px|SanDisk MicroSD 128G]]
+
{{FriendlyCoreS5Pxx18}}
*川宇 8G C10 High Speed class10 micro SD card:
+
{{S5P4418Software|NanoPi2-Fire}}
[[File:SanDisk MicroSD-02.png|frameless|100px|chuanyu MicroSD 8G]]
+
{{S5P4418ChangeLog}}
 
+
===Make an Installation MicroSD Card===
+
====Under Windows====
+
Get the following files from here:[http://dl.friendlyarm.com/nanopi2fire download link] to download image files: <br />
+
* Get a 4G SDHC card and backup its data if necessary.<br/>
+
<!---
+
FriendlyARM migrated both Android 5.1 and Android 4.4 to the NanoPC-T2. Android 4.4 includes features that professional users usually need: 4G, Ethernet configuration and etc.
+
--->
+
::{| class="wikitable"
+
|-
+
|colspan=2| Image Files
+
|-
+
|s5p4418-debian-sd4g-YYYYMMDD.img.zip      || Debian image file with X Window               
+
|-
+
|s5p4418-debian-wifiap-sd4g-YYYYMMDD.img.zip      || Debian image file with X Window and WiFi configured as AP 
+
|-
+
|s5p4418-kitkat-sd4g-YYYYMMDD.img.zip    || Android4.4 image file with support for 4G LTE
+
|-
+
|s5p4418-android-sd4g-YYYYMMDD.img.zip      || Android5.1 image file 
+
|-
+
|s5p4418-ubuntu-core-qte-sd4g-YYYYMMDD.img.zip      || Ubuntu core with Qt Embedded
+
|-
+
|colspan=2|Flash Utility: 
+
|-
+
|win32diskimager.rar || Windows utility. Under Linux users can use "dd"
+
|-
+
|}
+
 
+
<!---
+
::{| class="wikitable"
+
|-
+
|colspan=2|For LCD or HDMI output please use the following files:
+
|-
+
|nanopi2-debian-sd4g.img.zip      || Debian image files                 
+
|-
+
|nanopi2-android-sd4g.img.zip      || Android image files 
+
|-
+
|colspan=2|Flash Utility: 
+
|-
+
|win32diskimager.rar || Windows utility. Under Linux users can use "dd"
+
|-
+
|}
+
--->
+
* Please uncompress these files. Insert an SD card(at least 4G) to a Windows PC, run the win32diskimager utility as administrator,On the utility's main window select your SD card's drive and the image files and click on "write" to start flashing the SD card.
+
* Please insert this card to your NanoPi 2 Fire and power on (with a 5V/2A power source). If the green LED is on and the blue LED is blinking this indicates your NanoPi 2 Fire is successfully booted.<br />
+
 
+
====Under Linux Desktop====
+
*1) Insert your microSD card to your host running Ubuntu and check your SD card's device name
+
<syntaxhighlight lang="bash">
+
dmesg | tail
+
</syntaxhighlight>
+
Search the messages output by "dmesg" for similar words like "sdc: sdc1 sdc2". If you can find them it means your SD card is recognized as "/dev/sdc". Or you can check that by commanding "cat /proc/partitions".
+
 
+
*2) Download Firmware Package
+
<syntaxhighlight lang="bash">
+
git clone https://github.com/friendlyarm/sd-fuse_nanopi2.git
+
cd sd-fuse_nanopi2
+
</syntaxhighlight>
+
 
+
*3) Flash Android Firmware to MicroSD Card
+
<syntaxhighlight lang="bash">
+
su
+
./fusing.sh /dev/sdx
+
</syntaxhighlight>
+
(Note: you need to replace "/dev/sdx" with the device name in your system)
+
When you do “git clone” you have to hit “Y” within 10 seconds after it prompts you to download image files otherwise you will miss the download.
+
 
+
*4) Flash Debian Firmware to MicroSD Card
+
<syntaxhighlight lang="bash">
+
./fusing.sh /dev/sdx debian
+
</syntaxhighlight>
+
 
+
====Extend NanoPi 2 Fire's TF Card Section====
+
* When Debian/Ubuntu is loaded the TF card's section will be automatically extended.
+
* When Android is loaded you need to run the following commands on your host PC to extend your TF card's section:
+
<syntaxhighlight lang="bash">
+
sudo umount /dev/sdx?
+
sudo parted /dev/sdx unit % resizepart 4 100 resizepart 7 100 unit MB print
+
sudo resize2fs -f /dev/sdx7
+
</syntaxhighlight>
+
(Note: you need to replace "/dev/sdx" with the device name in your system)
+
<!---
+
=====For Debian=====
+
* Please run the following commands on a PC host's terminal:
+
<syntaxhighlight lang="bash">
+
sudo umount /dev/sdx?
+
sudo parted /dev/sdx unit % resizepart 2 100 unit MB print
+
sudo resize2fs -f /dev/sdx2
+
</syntaxhighlight>
+
 
+
=====For Android=====
+
* Please run the following commands on a PC host's terminal:
+
<syntaxhighlight lang="bash">
+
sudo umount /dev/sdx?
+
sudo parted /dev/sdx unit % resizepart 4 100 resizepart 7 100 unit MB print
+
sudo resize2fs -f /dev/sdx7
+
</syntaxhighlight>
+
(Note: you need to replace "/dev/sdx" with the device name in your system)
+
--->
+
 
+
====LCD/HDMI Resolution====
+
When system boots our uboot will check whether it is connected to an LCD. If it recognizes an LCD it will configure its resolution. By default our uboot configures the display to HDMI 720P.<br/>
+
If you want to reset the LCD resolution you can modify file "arch/arm/plat-s5p4418/nanopi2/lcds.c" in the kernel and recompile it.<br/>
+
If your NanoPi 2 connects an HDMI monitor and it runs Android it will automatically set the resolution to an appropriate HDMI mode by checking "EDID". If your NanoPi 2 connects an HDMI monitor and it runs Debian by default it will set the resolution to HDMI 720P and in this case you can set it to 1080P by modifying your kernel's configuration.<br/>
+
 
+
===Update Image Files in MicroSD Card From PC Host===
+
If you want to make some changes to the image files in your MicroSD card please follow steps below otherwise you can skip this section.<br/>
+
Please insert your MicroSD card to a PC host running LINUX, mount the boot and rootfs sections of the SD card and follow the steps below:<br/>
+
 
+
1) If you want to change your kernel command line parameters you can do it via the fw_setevn utility under "sd-fuse_nanopi2/tools"<br />
+
Check the current Command Line:
+
<syntaxhighlight lang="bash">
+
cd sd-fuse_nanopi2/tools
+
./fw_printenv /dev/sdc | grep bootargs
+
</syntaxhighlight>
+
Android 5.1.1_r6 starts SELinux. By default it is enforcing. You can change it this way:
+
<syntaxhighlight lang="bash">
+
./fw_setenv /dev/sdc bootargs XXX androidboot.selinux=permissive
+
</syntaxhighlight>
+
This will set it to "permissive". The "XXX" stands for the original bootargs' value.<br />
+
 
+
2) Update Kernel <br />
+
Our customized uboot will check the LCD type when it boots.For a non-Android OS If it recognizes an LCD connected to the NanoPi 2 Fire it will load "uImage" from "boot" otherwise it will load "uImage.hdmi"<br />
+
However for Android these two files don't make any differences for whatever display device it detects. You can use your generated uImage to replace the existing one under "boot".<br />
+
For Debian if your generated kernel is for LCD you need to replace the existing uImage or if your kernel is for HDMI you need to replace the existing uImage.hdmi .<br />
+
 
+
===Run Android or Debian===
+
* Insert a MicroSD card with Android image files to your NanoPi 2 Fire, connect the NanoPi 2 Fire to an HDMI monitor and a 5V/2A power source the NanoPi 2 Fire will be automatically powered on. If you can see the blue LED flashing it means your board is working and you will see Android loading on the HDMI monitor. <br/>
+
1) If you connect the NanoPi 2 Fire to an HDMI monitor you need to use a USB mouse and a USB keyboard to operate. If you connect it to an LCD with capacitive touch you can operate directly on the LCD.
+
2)If you want to do kernel development you'd better have a serial board which allows you to operate the board via a serial terminal.
+
* Here is a case in which we connect a NanoPi 2 Fire to a PC running Ubuntu and Minicom via a serial cable you will see system messages output to the PC’s minicom terminal:[[File:PSU-ONECOM01.png|frameless|400px|PSU-ONECOM01]]
+
* Under Debian the password for "root" is "fa".
+
 
+
===Login Debian via VNC or SSH===
+
If your NanoPi 2 Fire is not connected to a display device you can download and install a "VNC Viewer" on your PC or mobile phone and login the NanoPi 2 Fire via VNC. Its default password is "fa123456". Here is a screenshot which shows how it looks like when users login the NanoPi 2 Fire from an iPhone via VNC:<br />
+
[[File:iphone6-vnc-nanopi2.png|frameless|400px|VNC to NanoPi2]]
+
<br />
+
You can login via "SSH -l root 192.168.8.1" too and the default password for "root" is "fa".
+
<br />
+
 
+
==Play with Debian==
+
===Ethernet Connection===
+
If the NanoPi 2 Fire is connected to a network via Ethernet before it is powered on it will automatically obtain an IP after it is powered on. If it is not connected via Ethernet or its DHCP is not activated obtaining an IP will fail and system will hang on for about 15 to 60 seconds.
+
* 1) Setup MAC Address
+
The NanoPi 2 Fire by default doesn't have a valid MAC address. If the board connects a network successfully it will automatically generates a random MAC in "/etc/network/interfaces.d/eth0". Users can change it to a self-defined valid one:
+
<syntaxhighlight lang="bash">
+
vi /etc/network/interfaces.d/eth0
+
</syntaxhighlight>
+
Here is the content of a sample configuration file:
+
<syntaxhighlight lang="bash">
+
auto eth0
+
allow-hotplug eth0
+
iface eth0 inet dhcp
+
hwaddress 76:92:d4:85:f3:0f
+
</syntaxhighlight>
+
The "hwaddress" specifies the MAC address. Here the "76:92:d4:85:f3:0f" is a random MAC. We suggest users change it to a valid one<br />
+
Note: when you reset the MAC please make sure your MAC meets IEEE's definition otherwise it will cause unexpected issues.<br/>
+
After you make your change, save, exit and reboot your board or run the following commands to restart the network:
+
<syntaxhighlight lang="bash">
+
systemctl restart networking
+
</syntaxhighlight>
+
 
+
===Install Debian Packages===
+
We provide a Debian jessie image. You can install Jessie's packages by commanding "apt-get". If this is your first installation you need to update the package list by running the following command:
+
<syntaxhighlight lang="bash">
+
apt-get update
+
</syntaxhighlight>
+
You can install your preferred packages. For example if you want to install an FTP server you can do this:
+
<syntaxhighlight lang="bash">
+
apt-get install vsftpd
+
</syntaxhighlight>
+
Note: you can change your download server by editting "/etc/apt/sources.list". You can get a complete server list from [http://www.debian.org/mirror/list]. You need to select the one with "armhf".
+
 
+
==Make Your Own OS Image==
+
 
+
===Setup Development Environment===
+
 
+
===Install Cross Compiler===
+
Please download the compiler package:
+
<syntaxhighlight lang="bash">
+
git clone https://github.com/friendlyarm/prebuilts.git
+
sudo mkdir -p /opt/FriendlyARM/toolchain
+
sudo tar xf prebuilts/gcc-x64/arm-cortexa9-linux-gnueabihf-4.9.3.tar.xz -C /opt/FriendlyARM/toolchain/
+
</syntaxhighlight>
+
 
+
Then add the compiler's directory to "PATH" by appending the following lines in "~/.bashrc":
+
<syntaxhighlight lang="bash">
+
export PATH=/opt/FriendlyARM/toolchain/4.9.3/bin:$PATH
+
export GCC_COLORS=auto
+
</syntaxhighlight>
+
 
+
Execute "~/.bashrc" to make the changes into effect. Please note that there is a space after ".":
+
<syntaxhighlight lang="bash">
+
. ~/.bashrc
+
</syntaxhighlight>
+
 
+
This compiler is a 64-bit one therefore it cannot be run on a 32-bit LINUX. After the compiler is installed you can verify it by running the following commands:
+
<syntaxhighlight lang="bash">
+
arm-linux-gcc -v
+
Using built-in specs.
+
COLLECT_GCC=arm-linux-gcc
+
COLLECT_LTO_WRAPPER=/opt/FriendlyARM/toolchain/4.9.3/libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper
+
Target: arm-cortexa9-linux-gnueabihf
+
Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu
+
--host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3
+
--with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c,c++
+
--with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard
+
...
+
Thread model: posix
+
gcc version 4.9.3 (ctng-1.21.0-229g-FA)
+
</syntaxhighlight>
+
 
+
===Compile U-Boot===
+
Download the U-Boot source code and compile it. Please note the github's branch is nanopi2-lollipop-mr1:
+
<syntaxhighlight lang="bash">
+
git clone https://github.com/friendlyarm/uboot_nanopi2.git
+
cd uboot_nanopi2
+
git checkout nanopi2-lollipop-mr1
+
make s5p4418_nanopi2_config
+
make CROSS_COMPILE=arm-linux-
+
</syntaxhighlight>
+
 
+
After your compilation succeeds a u-boot.bin will be generated. If you want to test it please flash it to your installation MicroSD card via fastboot. Here is how you can do it:<br />
+
1) On your PC host please run "sudo apt-get install android-tools-fastboot" to install the fastboot utility<br />
+
2) Connect your NanoPi 2 Fire to your PC host via a serial cable (e.g. PSU-ONECOME). Press the enter key within two seconds right after you power on your NanoPi 2 Fire and you will enter uboot's command line mode:<br />
+
3) After type "fastboot" and press "enter" you will enter the fastboot mode:<br />
+
4) Connect your NanoPi 2 Fire to this PC host via a microUSB cable and type the following command to flash the u-boot.bin:<br />
+
<syntaxhighlight lang="bash">
+
fastboot flash bootloader u-boot.bin
+
</syntaxhighlight>
+
<br />
+
Warning: you cannot update this MicroSD card by commanding "dd". This command which will cause trouble when booting the NanoPi 2 Fire.<br />
+
 
+
===Prepare mkimage===
+
You need the mkimage utility to compile a U-Boot source code package. Please make sure this utility works well on your host before you start compiling a uImage.<br />
+
You can install this utility by either commanding "sudo apt-get install u-boot-tools" or following the commands below:
+
<syntaxhighlight lang="bash">
+
cd uboot_nanopi2
+
make CROSS_COMPILE=arm-linux- tools
+
sudo mkdir -p /usr/local/sbin && sudo cp -v tools/mkimage /usr/local/sbin
+
</syntaxhighlight>
+
 
+
===Compile Linux kernel===
+
====Compile Kernel====
+
* Download Kernel Source Code
+
<syntaxhighlight lang="bash">
+
git clone https://github.com/friendlyarm/linux-3.4.y.git
+
cd linux-3.4.y
+
git checkout nanopi2-lollipop-mr1
+
</syntaxhighlight>
+
The NanoPi 2 Fire's kernel source code lies in the "nanopi2-lollipop-mr1" branch.
+
* Compile Android Kernel
+
<syntaxhighlight lang="bash">
+
make nanopi2_android_defconfig
+
touch .scmversion
+
make uImage
+
</syntaxhighlight>
+
* Compile Debian Kernel
+
<syntaxhighlight lang="bash">
+
make nanopi2_linux_defconfig
+
touch .scmversion
+
make uImage
+
</syntaxhighlight>
+
After your compilation succeeds a uImage will be generated in the "arch/arm/boot/uImage" directory. This kernel is for HDMI. You can use it to replace the existing uImage.hdmi<br/>
+
If you want to generate a kernel for LCD you can do it this way:
+
<syntaxhighlight lang="bash">
+
touch .scmversion
+
make nanopi2_linux_defconfig
+
make menuconfig
+
  Device Drivers -->
+
    Graphics support -->
+
      Nexell Graphics -->
+
        [*] LCD
+
        [ ] HDMI
+
make uImage
+
</syntaxhighlight>
+
After your compilation succeeds a uImage will be generated for LCD. You can use it to replace the existing uImage.
+
 
+
====Compile Kernel Modules====
+
Android contains kernel modules which are in the "/lib/modules" directory in the system section. If you want to add your own modules to the kernel or you changed your kernel configurations you need to recompile these new modules.<br />
+
Compile Original Kernel Modules:
+
<syntaxhighlight lang="bash">
+
cd linux-3.4.y
+
make CROSS_COMPILE=arm-eabi- modules
+
</syntaxhighlight>
+
Here we have two new modules and we can compile them by following the commands below:
+
<syntaxhighlight lang="bash">
+
cd /opt/FriendlyARM/s5p4418/android
+
./vendor/friendly-arm/build/common/build-modules.sh
+
</syntaxhighlight>
+
The "/opt/FriendlyARM/s5p4418/android" directory points to the top directory of Android source code. You can get more details by specifying option "-h".<br />
+
After your compilation succeeds new modules will be generated
+
 
+
===Compile Android===
+
 
+
* Install Cross Compiler
+
We recommend installing 64 bit Ubuntu 16.04 on your PC host.
+
<syntaxhighlight lang="bash">
+
sudo apt-get install bison g++-multilib git gperf libxml2-utils make python-networkx zip
+
sudo apt-get install flex libncurses5-dev zlib1g-dev gawk minicom
+
</syntaxhighlight>
+
For more details please refer to https://source.android.com/source/initializing.html 。
+
 
+
* Download Source Code(Android 5.1)
+
You need to use repo to get the Android source code. Please refer to https://source.android.com/source/downloading.html 。
+
<syntaxhighlight lang="bash">
+
mkdir android && cd android
+
repo init -u https://github.com/friendlyarm/android_manifest.git -b nanopi2-lollipop-mr1
+
repo sync
+
</syntaxhighlight>
+
The "android" directory is the working directory. <br />
+
 
+
If you want to try Android4.4's source code you can run the following commands:
+
<syntaxhighlight lang="bash">
+
mkdir android && cd android
+
repo init -u https://github.com/friendlyarm/android_manifest.git -b nanopi2-kitkat
+
repo sync
+
</syntaxhighlight>
+
Option "-b" specifies a branch
+
 
+
* Compile System Package
+
<syntaxhighlight lang="bash">
+
source build/envsetup.sh
+
lunch aosp_nanopi2-userdebug
+
make -j8
+
</syntaxhighlight>
+
After your compilation succeeds the following files will be generated in the "out/target/product/nanopi2/" directory.
+
::{| class="wikitable"
+
|-
+
|filename    || partition || Description 
+
|-
+
|boot.img    || boot      || -
+
|-
+
|cache.img    || cache    || -
+
|-
+
|userdata.img || userdata  || -
+
|-
+
|system.img  || system    || -
+
|-
+
|partmap.txt  || -        || partition description file
+
|-
+
|}
+
 
+
* Flash Image to TF Card
+
If you want to boot your board from a TF card you can copy your generated image files to your card's sd-fuse_nanopi2/android/ direcroty and flash the image to the card with our script. For more details refer to [[#Under Linux Desktop]].
+
 
+
==Connect NanoPi 2 Fire to External Modules==
+
===Connect NanoPi 2 Fire to USB Camera(FA-CAM202)===
+
*In this usecase the NanoPi 2 Fire runs Debian. If you connect your NanoPi 2 Fire to our LCD after Debain is fully loaded please click on "other"-->"xawtv" on the left bottom of the GUI and the USB Camera application will be started. After enter "welcome  to  xawtv!" please click on "OK" to start exploring.
+
[[File:USB-camera-nanopi2.png|frameless|500px|USB camera]]
+
[[File:USB-camera-nanopi2-01.png|frameless|500px|USB camera-01]]
+
===Connect NanoPi 2 Fire to CMOS 5M-Pixel Camera===
+
For more details about the CAM500B camera refer to [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_CAM500B]<br/>
+
*If your NanoPi 2 Fire runs Android5.1 and it is connected to our LCD or an HDMI monitor after Android is fully loaded click on the "Camera" icon and the application will be started. You can take pictures or record videos
+
[[File:CMOS-camera-nanopi2.png|frameless|500px|CMOS camera]]
+
 
+
*Under Debian/Ubuntu a camera utility "nanocams" is available for previewing 40 frames and picture taking. You can try it by following the commands below
+
<syntaxhighlight lang="bash">
+
sudo nanocams -p 1 -n 40 -c 4 -o IMG001.jpg
+
</syntaxhighlight>
+
For more details about the usage of the nanocams run "nanocams -h".
+
You can get its source code from our git hub:
+
<syntaxhighlight lang="bash">
+
git clone https://github.com/friendlyarm/nexell_linux_platform.git
+
</syntaxhighlight>
+
 
+
===Use OpenCV to Access USB Camera===
+
<!---
+
* The full name of "OpenCV" is Open Source Computer Vision Library and it is a cross platform vision library.
+
* When the NanoPi 2 Fire runs Debian users can use OpenCV APIs to access a USB Camera device<br>
+
Here is a guideline on how to use OpenCV with C++ on the NanoPi 2 Fire<br>
+
1. Preparations
+
<syntaxhighlight lang="bash">
+
---Firstly you need to make sure your NanoPi 2 Fire is connected to the internet.
+
  Login your NanoPi 2 Fire via a serial terminal or SSH. After login please type your username(root) and password(fa):
+
---Run the following commands:
+
</syntaxhighlight>
+
<br>
+
<syntaxhighlight lang="bash">
+
#apt-get update
+
(The OS images we provide for the NanoPi 2 Fire by default have the vi utility. However we suggest you install the vim utility)
+
#apt-get install vim
+
#apt-get install libcv-dev libopencv-dev
+
</syntaxhighlight>
+
 
+
2. Make sure your USB camera works with the NanoPi 2 Fire. You can test your camera with NanoPi 2 Fire's camera utility.<br>
+
 
+
3. Check your camera device:
+
<syntaxhighlight lang="bash">
+
ls /dev/video*
+
</syntaxhighlight>
+
* Note:in our case "video0" was the camera's device name.
+
 
+
4. OpenCV's code sample:
+
<syntaxhighlight lang="bash">
+
#cd /home/fa
+
#vim test.cpp
+
</syntaxhighlight>
+
<br>
+
<syntaxhighlight lang="bash">
+
#include "opencv2/opencv.hpp"
+
 
+
using namespace cv;
+
 
+
int main(int, char**)
+
{
+
    VideoCapture cap(0); // open the default camera
+
    if(!cap.isOpened())  // check if we succeeded
+
        return -1;
+
 
+
    Mat edges;
+
    namedWindow("edges",1);
+
    for(;;)
+
    {
+
        Mat frame;
+
        cap >> frame; // get a new frame from camera
+
        cvtColor(frame, edges, CV_BGR2GRAY);
+
        GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
+
        Canny(edges, edges, 0, 30, 3);
+
        imshow("edges", edges);
+
        if(waitKey(30) >= 0) break;
+
    }
+
    // the camera will be deinitialized automatically in VideoCapture destructor
+
    return 0;
+
}
+
</syntaxhighlight>
+
Compile the code sample:
+
<syntaxhighlight lang="bash">
+
#g++ test.cpp -o test -lopencv_core -lopencv_highgui -lopencv_imgproc
+
</syntaxhighlight>
+
 
+
If it is compiled successfully a "test" executable will be generated:<br>
+
 
+
5. Connect NanoPi 2 Fire to USB Keyboard & Run the Following Command:
+
<syntaxhighlight lang="bash">
+
#./test
+
</syntaxhighlight>
+
 
+
This is what you expect to observe:<br>
+
--->
+
* The full name of "OpenCV" is Open Source Computer Vision Library and it is a cross platform vision library.
+
* When the NanoPi 2 Fire runs Debian users can use OpenCV APIs to access a USB Camera device.<br>
+
1. Here is a guideline on how to use OpenCV with C++ on the NanoPi 2 Fire:
+
* Firstly you need to make sure your NanoPi 2 Fire is connected to the internet.Login to your NanoPi 2 Fire via a serial terminal or SSH. After login type in your username(root) and password(fa):
+
* Run the following commands:
+
<syntaxhighlight lang="bash">
+
apt-get update
+
apt-get install libcv-dev libopencv-dev
+
</syntaxhighlight>
+
 
+
2. Make sure your USB camera works with the NanoPi 2 Fire. You can test your camera with NanoPi 2 Fire's camera utility.<br>
+
 
+
3. Check your camera device:
+
<syntaxhighlight lang="bash">
+
ls /dev/video*
+
</syntaxhighlight>
+
* Note:in our case "video0" was the camera's device name.
+
 
+
4. OpenCV's code sample(Official Code Sample in C++) under /home/fa/Documents/opencv-demo. You can compile it by running the following command:
+
<syntaxhighlight lang="bash">
+
cd /home/fa/Documents/opencv-demo
+
make
+
</syntaxhighlight>
+
If it is compiled successfully a demo executable will be generated<br />
+
 
+
5. Connect NanoPi 2 Fire to a USB Keyboard & Run the Following Command:
+
<syntaxhighlight lang="bash">
+
./demo
+
</syntaxhighlight>
+
[[File:OpenCV-Fire.png|frameless|600px|OpenCV-Fire]]
+
 
+
===Connect NanoPi 2 Fire to USB WiFi===
+
* Click on here to enter the kernel compilation [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_USB_WiFi]
+
 
+
===Connect NanoPi 2 Fire to Matrix GPS Module===
+
* The Matrix-GPS module is a small GPS module with high performance. It can be used in navigation devices, four-axle drones and etc.
+
* The Matrix-GPS module uses serial communication. When the NanoPi 2 Fire is connected to the Matrix GPS module, after the NanoPi 2 Fire is powered up type in the following command in a terminal or click on the xgps icon it will be started.
+
<syntaxhighlight lang="bash">
+
$su - fa -c "DISPLAY=:0 xgps 127.0.0.1:9999"
+
</syntaxhighlight>
+
* Or on the Debian GUI start the LXTerminal, type in "xgps" and enter it will be started too.
+
For more details about this GPS module refer to [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_GPS this link]<br />
+
Refer to the following diagram to connect the NanoPi 2 Fire to the Matrix-GPS:<br />
+
[[File:GPS_NanoPi_2_Fire.png|frameless|600px|GPS_NanoPi_2_Fire]]
+
 
+
Connection Details:
+
{| class="wikitable"
+
|-
+
|Matrix-GPS || NanoPi 2 Fire     
+
|-
+
|RXD    || Pin8
+
|-
+
|TXD    || Pin10
+
|-
+
|5V    || Pin4
+
|-
+
|GND    || Pin6
+
|}
+
 
+
===Connect NanoPi 2 Fire to I2C Device===
+
* The Matrix-I2C_LCD1602_Keypad module is an easy-to-use display module based on the LCD1602. This module integrates the LCD1602 and the MCP23017 module. It has five programmable keys which allow users to control the LCD1602's display and external devices connected to the module.
+
* The MCP23017 communicates through I2C interface. You can learn how the NanoPi 2 Fire communicates to an I2C device by studying this module.
+
For more details about the Matrix - I2C LCD1602 Keypad refer to [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_I2C_LCD1602_Keypad this link]<br />
+
Refer to the following diagram to connect the NanoPi 2 Fire to the Matrix-I2C_LCD1602_Keypad:<br>
+
[[File:matrix-i2c_lcd1602_keypad_nanopi_2.jpg|frameless|600px|matrix-i2c_lcd1602_keypad_nanopi]]
+
 
+
Connection Details:
+
{| class="wikitable"
+
|-
+
|Matrix-I2C_LCD1602_Keypad || NanoPi 2 Fire     
+
|-
+
|SDA    || Pin3
+
|-
+
|SCL    || Pin5
+
|-
+
|5V    || Pin4
+
|-
+
|GND    || Pin6
+
|}
+
 
+
===Connect NanoPi 2 Fire to SPI Device===
+
* The Matrix-2'8_SPI_Key_TFT module is a 2.8" TFT LCD module. It uses the ST7789S IC and the XPT2046 resistive IC. The LCD's resolution is 320 * 240 and communicates via SPI. It has three programmable user keys.
+
For more details about the Matrix-2'8_SPI_Key_TFT SPI module refer to [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_2%278_SPI_Key_TFT this link]<br />
+
Refer to the following diagram to connect the NanoPi 2 Fire to the Matrix-2'8_SPI_Key_TFT module:<br>
+
[[File:Matrix-2'8_SPI_Key_TFT_nanopi2.jpg|frameless|600px|Matrix-2'8_SPI_Key_TFT_nanopi2]]
+
 
+
Connection Details
+
{| class="wikitable"
+
|-
+
|Matrix-2'8_SPI_Key_TFT || NanoPi 2 Fire
+
|-
+
|GND        || Pin6
+
|-
+
|5V        || Pin2
+
|-
+
|LED_EN    || Pin11
+
|-
+
|LCD_RESET  || Pin7
+
|-
+
|LCD_D/C    || Pin22
+
|-
+
|LCD_CS    || Pin24
+
|-
+
|SPICLK    || Pin23
+
|-
+
|SPIMOSI    || Pin19
+
|-
+
|SPIMISO    || Pin21
+
|-
+
|T_CS      || Pin26
+
|-
+
|T_IRQ      || Pin18
+
|-
+
|}
+
 
+
 
+
==Android Hardware Access==
+
FriendlyElec developed a library called “libfriendlyarm-hardware.so”, for android developer to access the hardware resources on the development board in their android apps, the library is based on Android NDK.<br />
+
Accessible Modules:
+
* Serial Port
+
* PWM
+
* EEPROM
+
* ADC
+
* LED
+
* LCD 1602 (I2C)
+
* OLED (SPI)
+
 
+
Accessible Ports:
+
* GPIO
+
* Serial Port
+
* I2C
+
* SPI
+
 
+
Please refer to the following url for details:<br />
+
* Homepage: http://wiki.friendlyarm.com/wiki/index.php/Android_Hardware_Access
+
* Examples: https://github.com/friendlyarm/AndroidHardwareAccess
+
* Guide to API in Chinese: https://github.com/friendlyarm/AndroidHardwareAccess/blob/master/友善电子Android硬件开发指南.pdf
+
 
+
 
+
==FAQ==
+
* '''Common Issues'''
+
::{| class="wikitable"
+
|-
+
|Where to download image files? || The NanoPi 2 Fire has a wiki site which has all the necessary information and details about everything. Its link is :http://wiki.friendlyarm.com/wiki/index.php/NanoPi_2_Fire   
+
|-
+
|After the board is powered on the blue LED is not on || 1. The power is not enough or instable. A 5V/2A power is a must; <br />
+
2. The TF card is not a high speed one. Please use an 8G (or above) microSD Card/TFCard, Class 10 (or Above);<br />
+
3. Please try our latest image files;<br />
+
4. Please contact our techsupport at techsupport@friendlyarm.com
+
|-
+
|After the board is powered on the blue LED is on but not blinking  ||1. The power is not enough or instable. A 5V/2A power is a must;<br />
+
2. The TF card is not a high speed one. Please use an 8G (or above) microSD Card/TFCard, Class 10 (or Above);<br />
+
3. Please try our latest image files
+
|-
+
|When the board doesn’t connect any display device it can boot normally and output system messages to the serial port. However when it connects an LCD the LCD doesn’t display anything or reboots frequently before it fully loads an OS. ||1. The power is not enough or instable. A 5V/2A power is a must;<br />
+
2. Please check whetherthe FPC cable is properly connected or whether it is broken or not;<br />
+
3. Please connect the board to a PC via a serial cable and check whether the LCD is recognized by the board.
+
|-
+
|When the board doesn’t connect an LCD it can boot normally and output system messages to the serial port. However when it connects an HDMI monitor the monitor doesn’t display anything ||1. You can try connecting your board to a monitor with DVI interface with an HDMI to DVI cable<br />
+
2. Please use a monitor which has an HDMI interface
+
|-
+
|When the board runs Debian HDMI doesn’t have audio output||Our Debian system currently doesn’t support HDMI audio because we didn’t include HDMI’s audio package
+
|-
+
|When the board runs Android HDMI doesn’t support volume control. ||Our Android system currently doesn’t support HDMI’s volume control. Users can adjust it via a remote control
+
|-
+
|}
+
 
+
==Source Code and Image Files Download Links==
+
* Image File: [https://www.mediafire.com/folder/ilkcy37otd7il/S5P4418]
+
* Source Code: [https://github.com/friendlyarm]
+
 
+
==Resources==
+
* 《创客秘籍》[http://wiki.friendlyarm.com/wiki/index.php/File:%E5%88%9B%E5%AE%A2%E7%A7%98%E7%B1%8D.pdf Hacker's Book in Chinese by FriendlyARM]
+
* 《创客秘籍-02》[http://pan.baidu.com/s/1hrDu9es Hacker's Book-02 in Chinese by FriendlyARM]
+
* 《创客秘籍-03》[http://wiki.friendlyarm.com/wiki/index.php/File:%E5%88%9B%E5%AE%A2%E7%A7%98%E7%B1%8D-03.pdf Hacker's Book-03 in Chinese by FriendlyARM]
+
* Schematic ([http://wiki.friendlyarm.com/wiki/images/9/97/NanoPi2_Fire_1512B_Schematic.pdf NanoPi2_Fire_1512B_Schematic.pdf])
+
* Dimensions ([http://wiki.friendlyarm.com/wiki/images/b/b4/NanoPi2_Fire_1512B_Dimensions%28dxf%29.zip NanoPi2_Fire_1512B_Dimensions(dxf).zip])
+
* S5P4418 Datasheet ([http://wiki.friendlyarm.com/wiki/images/a/a7/Pi2_SOC_DS_0.1.pdf S5P4418_Datasheet_0.1.pdf])
+
* Matrix Modules & Wiki Sites:
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Button Button]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_LED LED]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Analog_to_Digital_Converter A/D Converter]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Relay Relay]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_3-Axis_Digital_Accelerometer 3-Axis Digital Accelerometer]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_3-Axis_Digital_Compass 3-Axis Digital Compass]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Temperature_Sensor Temperature Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Temperature_and_Humidity_Sensor Temperature & Humidity Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Buzzer Buzzer]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Joystick Joystick]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_I2C_LCD1602_Keypad I2C(PCF8574)+LCD1602]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Sound_Sensor Sound Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Ultrasonic_Ranger Ultrasonic Ranger]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_GPS GPS]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Compact_Kit Matrix - Compact Kit]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Fire_Sensor Fire Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_CAM500A CAM500A Camera]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_BAll_Rolling_Switch BAll Rolling Switch]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_2%278_SPI_Key_TFT 2'8 SPI Key TFT 2.8" SPI LCD]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_IR_Counter IR Counter]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_IR_Receiver IR Receiver]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_L298N_Motor_Driver L298N Motor Driver]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_MQ-2_Gas_Sensor MQ-2 Gas Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_MQ-3_Gas_Sensor MQ-3 Gas Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_One_Touch_Sensor One_Touch_Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Photoresistor _Photoresistor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Potentiometer _Potentiometer]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Pressure_and_Temperature_Sensor Pressure & Temperature Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_RGB_LED RGB LED]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_RTC RTC]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Rotary_Encoder Rotary Encoder]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Soil_Moisture_Sensor Soil Moisture Sensor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Thermistor Thermistor]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_USB_WiFi USB WiFi]
+
** [http://wiki.friendlyarm.com/wiki/index.php/Matrix_-_Water_Sensor Water Sensor]
+
 
+
==External Links==
+
* [http://www.friendlyarm.com/Forum/viewtopic.php?f=17&t=73  How to setup Qt development environment for NanoPi 2 & NanoPi 2 Fire]
+
 
+
==Update Log==
+
===Jan-29-2016===
+
* Add 9 More OS Support
+
 
+
===Feb-02-2016===
+
* Add 9.1 Ubuntu-Mate
+
* Add 9.2 Ubuntu-Core
+
* Add 11 External Links
+
 
+
===Mar-03-2016===
+
* Modified Section 4.5
+
 
+
===Mar-09-2016===
+
* Corrected a typo
+
 
+
===Mar-17-2016===
+
* Updated Ubuntu-Mate, Kali and Deepin15's download links
+
 
+
===Mar-18-2016===
+
* Modified section 4.3.1
+
* Added Sections 10 and 11
+
 
+
===April-08-2016===
+
* Added sections 7.5, 7.6 and 7.7
+
* Updated sections 8.1 and 11
+
 
+
===July-05-2016===
+
* Rewrote sections 4.3.3, 6.6 and 7.3
+
 
+
===Nov-03-2016===
+
* Updated sections 4.3.1 and 7.2
+
 
+
===Dec-07-2016===
+
* Updated sections 6.6
+

Revision as of 08:52, 23 December 2017

查看中文

1 Introduction

Overview
Front
Back
  • The NanoPi 2 Fire is a high performance ARM Board developed by FriendlyARM for Hobbyists, Makers and Hackers for IOT projects. It features Samsung's Cortex-A9 Quad Core S5P4418@1.4GHz SoC and 1G 32bit DDR3 RAM. It has a Gbps Ethernet port. It boots Android and Debian from a TF card. It integrates an HDMI and LCD interface. Its adoption of the Raspberry Pi's GPIO pin header makes it compatible with both Raspberry Pi's external GPIO modules and Arduino's shield boards. Its PCB dimension is 75 x 40 mm.

2 Hardware Spec

  • CPU: S5P4418, 1.4GHz
  • RAM: 1GB DDR3
  • Connectivity: Gbps Ethernet port
  • PMU Power Management: AXP228, support software power-off, sleep and wakeup functions
  • USB 2.0 Type A x 1
  • Debug Serial Port/UART0 x 1
  • microSD Slot x 1
  • microUSB x 1: for data transmission and power input
  • LCD Interface: 0.5 mm pitch SMT FPC seat, for full-color LCD (RGB: 8-8-8)
  • HDMI: HDMI 1.4A, Type-A, 1080P60
  • DVP Camera Interface: 0.5mm spacing FPC socket. It includes ITU-R BT 601/656 8-bit, I2C and IO
  • GPIO: 2.54mm spacing 40pin, compatible with Raspberry Pi's GPIO. It includes UART, SPI, I2C, PWM, IO etc
  • Button: Power Button x 1, Reset Button x 1
  • LED: LED for Power Indication x 1, System LED x 1
  • PCB Dimension: 75 x 40mm
  • Power: DC 5V/2A
  • Temperature measuring range: -20℃ to 80℃
  • OS: Android, Debian

compact

3 Diagram, Layout and Dimension

3.1 Layout

NanoPi 2 Fire Layout
  • GPIO Pin Spec
Pin# Name Pin# Name
1 SYS_3.3V 2 VDD_5V
3 I2C0_SDA 4 VDD_5V
5 I2C0_SCL 6 DGND
7 GPIOD8/PPM 8 UART3_TXD/GPIOD21
9 DGND 10 UART3_RXD/GPIOD17
11 UART4_TX/GPIOB29 12 GPIOD1/PWM0
13 GPIOB30 14 DGND
15 GPIOB31 16 GPIOC14/PWM2
17 SYS_3.3V 18 GPIOB27
19 SPI0_MOSI/GPIOC31 20 DGND
21 SPI0_MISO/GPIOD0 22 UART4_RX/GPIOB28
23 SPI0_CLK/GPIOC29 24 SPI0_CS/GPIOC30
25 DGND 26 GPIOB26
27 I2C1_SDA 28 I2C1_SCL
29 GPIOC8 30 DGND
31 GPIOC7 32 GPIOC28
33 GPIOC13/PWM1 34 DGND
35 SPI2_MISO/GPIOC11 36 SPI2_CS/GPIOC10
37 AliveGPIO3 38 SPI2_MOSI/GPIOC12
39 DGND 40 SPI2_CLK/GPIOC9


  • Debug Port(UART0)
Pin# Name
1 DGND
2 VDD_5V
3 UART_TXD0
4 UART_RXD0
  • DVP Camera Interface Pin Spec
Pin# Name
1, 2 SYS_3.3V
7,9,13,15,24 DGND
3 I2C0_SCL
4 I2C0_SDA
5 GPIOB14
6 GPIOB16
8,10 NC
11 VSYNC
12 HREF
14 PCLK
16-23 Data bit7-0
  • RGB LCD Interface Pin Spec
Pin# Name Description
1, 2 VDD_5V 5V output, LCD power
11,20,29, 37,38,39,40, 45 DGND ground
3-10 Blue LSB to MSB RGB Blue
12-19 Green LSB to MSB RGB Green
21-28 Red LSB to MSB RGB Red
30 GPIOB25 available for users
31 GPIOC15 occupied by FriendlyARM one wire technology to recognize LCD models and control backlight and implement resistive touch, not applicable for users
32 XnRSTOUT Form CPU low when system is reset
33 VDEN signal the external LCD that data is valid on the data bus
34 VSYNC vertical synchronization
35 HSYNC horizontal synchronization
36 LCDCLK LCD clock, Pixel frequency
41 I2C2_SCL I2C2 clock signal, for capacitive touch's data transmission
42 I2C2_SDA I2C2 data signal, for capacitive touch's data transmission
43 GPIOC16 interrupt pin for capacitive touch, used with I2C2
44 NC not connected
Note
  1. SYS_3.3V: 3.3V power output
  2. VDD_5V: 5V power input/output. When the external device’s power is greater than the MicroUSB’s the external device is charging the board otherwise the board powers the external device. The input range is 4.7V ~ 5.6V
  3. For more details please refer to the document:NanoPi2_Fire_1512B_Schematic.pdf

3.2 Board Dimension

NanoPi 2 Fire Dimensions

For more details please refer to the document:NanoPi2_Fire_1512B_Dimensions(dxf).zip

4 Get Started

4.1 Essentials You Need

Before play with your NanoPi 2 Fire please get the following items ready

  • NanoPi 2 Fire
  • microSD Card/TFCard: Class 10 or Above, minimum 8GB SDHC
  • microUSB power. A 5V/2A power is a must
  • HDMI monitor or LCD
  • USB keyboard and mouse
  • A Host running Ubuntu 16.04 64 bit system

4.2 Extend SD Card Section

  • When Debian/Ubuntu is loaded the SD card's section will be automatically extended.
  • When Android is loaded you need to run the following commands on your host PC to extend your SD card's section:
sudo umount /dev/sdx?
sudo parted /dev/sdx unit % resizepart 4 100 resizepart 7 100 unit MB print
sudo resize2fs -f /dev/sdx7

(Note: you need to replace "/dev/sdx" with the device name in your system)

4.3 LCD/HDMI Resolution

When the system boots our uboot will check whether it is connected to an LCD or to an HDMI monitor. If it recognizes an LCD it will configure its resolution. Our uboot defaults to the HDMI 720P configuration.
If you want to modify the LCD resolution you can modify file "arch/arm/plat-s5p4418/nanopi2/lcds.c" in the kernel and recompile it.
If your NanoPi2-Fire is connected to an HDMI monitor and it runs Android it will automatically set the resolution to an appropriate HDMI mode by checking the "EDID". If your NanoPi2-Fire is connected to an HDMI monitor and it runs Debian by default it will set the resolution to the HDMI 720P configuration. If you want to modify the HDMI resolution to 1080P modify your kernel's configuration as explained above.

4.4 Update SD Card's boot parameters From PC Host

Insert your SD card into a host PC running Linux, if you want to change your kernel command line parameters you can do it via the fw_setevn utility.
Check the current Command Line:

git clone https://github.com/friendlyarm/sd-fuse_nanopi2.git
cd sd-fuse_nanopi2/tools
./fw_printenv /dev/sdx | grep bootargs

For example, to disable android SELinux, You can change it this way:

./fw_setenv /dev/sdc bootargs XXX androidboot.selinux=permissive

The "XXX" stands for the original bootargs' value.

4.5 Run Android or Linux (TODO)

  • 将制作好SD卡插入NanoPi2-Fire,连接HDMI,按住靠近网口的boot按键,最后接电源(5V 2A)拨动开关,NanoPi2-Fire会从SD卡启动。你可以看到板上PWR灯常亮,LED1灯闪烁,这说明系统已经开始启动了,同时电视上也将能看到系统启动的画面。
  • 要在电视上进行操作,你需要连接USB鼠标和键盘;如果你选购了LCD配件,则可以直接使用LCD上面的触摸屏进行操作。

5 Work with FriendlyCore

5.1 Introduction

FriendlyCore is a light Linux system without X-windows, based on ubuntu core, It uses the Qt-Embedded's GUI and is popular in industrial and enterprise applications.

Besides the regular Ubuntu core's features our FriendlyCore has the following additional features:

  • it supports our LCDs with both capacitive touch and resistive touch(S700, X710, HD702, S430, HD101 and S70)
  • it supports WiFi
  • it supports Ethernet
  • it supports Bluetooth and has been installed with bluez utilities
  • it supports audio playing
  • it supports Qt 5.10.0 EGLES and OpenGL ES1.1/2.0 (Only for S5P4418/S5P6818)

5.2 System Login

  • If your board is connected to an HDMI monitor you need to use a USB mouse and keyboard.
  • If you want to do kernel development you need to use a serial communication board, ie a PSU-ONECOM board, which will

For example, NanoPi-M1:
PSU-ONECOM-M1.jpg
You can use a USB to Serial conversion board too.
Make sure you use a 5V/2A power to power your board from its MicroUSB port:
For example, NanoPi-NEO2:
USB2UART-NEO2.jpg

  • FriendlyCore User Accounts:

Non-root User:

   User Name: pi
   Password: pi

Root:

   User Name: root
   Password: fa

The system is automatically logged in as "pi". You can do "sudo npi-config" to disable auto login.

  • Update packages
$ sudo apt-get update

5.3 Configure System with npi-config

The npi-config is a commandline utility which can be used to initialize system configurations such as user password, system language, time zone, Hostname, SSH switch , Auto login and etc. Type the following command to run this utility.

$ sudo npi-config

Here is how npi-config's GUI looks like:
npi-config

5.4 Develop Qt Application

Please refer to: How to Build and Install Qt Application for FriendlyELEC Boards

5.5 Setup Program to AutoRun

You can setup a program to autorun on system boot with npi-config:

sudo npi-config

Go to Boot Options -> Autologin -> Qt/Embedded, select Enable and reboot.

5.6 Extend TF Card's Section

When FriendlyCore is loaded the TF card's section will be automatically extended.You can check the section's size by running the following command:

$ df -h

5.7 Transfer files using Bluetooth

Take the example of transferring files to the mobile phone. First, set your mobile phone Bluetooth to detectable status, then execute the following command to start Bluetooth search.:

hcitool scan


Search results look like:

Scanning ...
    2C:8A:72:1D:46:02   HTC6525LVW

This means that a mobile phone named HTC6525LVW is searched. We write down the MAC address in front of the phone name, and then use the sdptool command to view the Bluetooth service supported by the phone:

sdptool browser 2C:8A:72:1D:46:02

Note: Please replace the MAC address in the above command with the actual Bluetooth MAC address of the mobile phone.
This command will detail the protocols supported by Bluetooth for mobile phones. What we need to care about is a file transfer service called OBEX Object Push. Take the HTC6525LVW mobile phone as an example. The results are as follows:

Service Name: OBEX Object Push
Service RecHandle: 0x1000b
Service Class ID List:
  "OBEX Object Push" (0x1105)
Protocol Descriptor List:
  "L2CAP" (0x0100)
  "RFCOMM" (0x0003)
    Channel: 12
  "OBEX" (0x0008)
Profile Descriptor List:
  "OBEX Object Push" (0x1105)
    Version: 0x0100

As can be seen from the above information, the channel used by the OBEX Object Push service of this mobile phone is 12, we need to pass it to the obexftp command, and finally the command to initiate the file transfer request is as follows:

obexftp --nopath --noconn --uuid none --bluetooth -b 2C:8A:72:1D:46:02 -B 12 -put example.jpg

Note: Please replace the MAC address, channel and file name in the above command with the actual one.

After executing the above commands, please pay attention to the screen of the mobile phone. The mobile phone will pop up a prompt for pairing and receiving files. After confirming, the file transfer will start.

Bluetooth FAQ:
1) Bluetooth device not found on the development board, try to open Bluetooth with the following command:

rfkill unblock 0

2) Prompt can not find the relevant command, you can try to install related software with the following command:

apt-get install bluetooth bluez obexftp openobex-apps python-gobject ussp-push

5.8 WiFi

For either an SD WiFi or a USB WiFi you can connect it to your board in the same way. The APXX series WiFi chips are SD WiFi chips. By default FriendlyElec's system supports most popular USB WiFi modules. Here is a list of the USB WiFi modules we tested:

Index Model
1 RTL8188CUS/8188EU 802.11n WLAN Adapter
2 RT2070 Wireless Adapter
3 RT2870/RT3070 Wireless Adapter
4 RTL8192CU Wireless Adapter
5 mi WiFi mt7601
6 5G USB WiFi RTL8821CU
7 5G USB WiFi RTL8812AU

You can use the NetworkManager utility to manage network. You can run "nmcli" in the commandline utility to start it. Here are the commands to start a WiFi connection:

  • Change to root
$ su root
  • Check device list
$ nmcli dev

Note: if the status of a device is "unmanaged" it means that device cannot be accessed by NetworkManager. To make it accessed you need to clear the settings under "/etc/network/interfaces" and reboot your system.

  • Start WiFi
$ nmcli r wifi on
  • Scan Surrounding WiFi Sources
$ nmcli dev wifi
  • Connect to a WiFi Source
$ nmcli dev wifi connect "SSID" password "PASSWORD" ifname wlan0

The "SSID" and "PASSWORD" need to be replaced with your actual SSID and password.If you have multiple WiFi devices you need to specify the one you want to connect to a WiFi source with iface
If a connection succeeds it will be automatically setup on next system reboot.

For more details about NetworkManager refer to this link: Use NetworkManager to configure network settings

If your USB WiFi module doesn't work most likely your system doesn't have its driver. For a Debian system you can get a driver from Debian-WiFi and install it on your system. For a Ubuntu system you can install a driver by running the following commands:

$ apt-get install linux-firmware

In general all WiFi drivers are located at the "/lib/firmware" directory.


5.9 Ethernet Connection

If a board is connected to a network via Ethernet before it is powered on it will automatically obtain an IP with DHCP activated after it is powered up. If you want to set up a static IP refer to: Use NetworkManager to configure network settings


5.10 Custom welcome message

The welcome message is printed from the script in this directory:

/etc/update-motd.d/

For example, to change the FriendlyELEC LOGO, you can change the file /etc/update-motd.d/10-header. For example, to change the LOGO to HELLO, you can change the following line:

TERM=linux toilet -f standard -F metal $BOARD_VENDOR

To:

TERM=linux toilet -f standard -F metal HELLO

5.11 Modify timezone

For exampe, change to Shanghai timezone:

sudo rm /etc/localtime
sudo ln -ls /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

5.12 Set Audio Device

If your system has multiple audio devices such as HDMI-Audio, 3.5mm audio jack and I2S-Codec you can set system's default audio device by running the following commands.

  • After your board is booted run the following commands to install alsa packages:
$ apt-get update
$ apt-get install libasound2
$ apt-get install alsa-base
$ apt-get install alsa-utils
  • After installation is done you can list all the audio devices by running the following command. Here is a similar list you may see after you run the command:
$ aplay -l
card 0: HDMI
card 1: 3.5mm codec
card 2: I2S codec

"card 0" is HDMI-Audio, "card 1" is 3.5mm audio jack and "card 2" is I2S-Codec. You can set default audio device to HDMI-Audio by changing the "/etc/asound.conf" file as follows:

pcm.!default {
    type hw
    card 0
    device 0
}
 
ctl.!default {
    type hw
    card 0
}

If you change "card 0" to "card 1" the 3.5mm audio jack will be set to the default device.
Copy a .wav file to your board and test it by running the following command:

$ aplay /root/Music/test.wav

You will hear sounds from system's default audio device.
If you are using H3/H5/H2+ series board with mainline kernel, the easier way is using npi-config


5.13 Run Qt 5.10.0 Demo with GPU acceleration

Run the following command

$ sudo qt5demo

S5pxx18-QtE

5.14 Run Qt 5.10.0 Demo with OpenGL

Run the following command

. setqt5env
cd $QTDIR
cd /examples/opengl/qopenglwidget
./qopenglwidget

For more Qt 5.10.0 examples, please go to:
cd $QTDIR/examples/

5.15 Play HD Video with Hardware-decoding

gst-player is console player, it base on GStreamer, support VPU with Hardware-decoding:

sudo gst-player /home/pi/demo.mp4

The equivalent gsteamer command is as follows:

sudo gst-launch-1.0 filesrc location=/home/pi/demo.mp4 ! qtdemux name=demux demux. ! queue ! faad ! audioconvert ! audioresample ! alsasink device="hw:0,DEV=1" demux. ! queue ! h264parse ! nxvideodec ! nxvideosink dst-x=0 dst-y=93 dst-w=1280 dst-h=533

5.16 Connect to DVP Camera CAM500B

The CAM500B camera module is a 5M-pixel camera with DVP interface. For more tech details about it you can refer to Matrix - CAM500B.
Enter the following command to preview the video:

gst-launch-1.0 -e v4l2src device=/dev/video6 ! video/x-raw,format=I420,framerate=30/1,width=1280,height=720 ! nxvideosink

Enter the following command to start recording (VPU hardware encoding):

gst-launch-1.0 -e v4l2src device=/dev/video6 ! video/x-raw,format=I420,framerate=30/1,width=1280,height=720 ! tee name=t t. \
 ! queue ! nxvideosink t. ! queue ! nxvideoenc bitrate=12000000 ! mp4mux ! \
 filesink location=result_720.mp4

5.17 Power Off and Schedule Power On

“PMU Power Management” feature helps us to auto power on the board at a specific time, it is implemented by an MCU, support software power-off, and RTC alarm power-up functions.

Here’s a simple guide:
Turn on automatically after 100 seconds. (Time must be greater than 60 seconds.):

$ sudo echo 100 > /sys/class/i2c-dev/i2c-3/device/3-002d/wakealarm

After setting up the automatic boot, turn off board with the 'poweroff’ command:

$ sudo poweroff

Cancel automatic boot:

$ sudo echo 0 > /sys/class/i2c-dev/i2c-3/device/3-002d/wakealarm

Query the current settings, in the front is current time, followed by the time of automatic booting: If no automatic boot is set, it will display "disabled”.

$ sudo cat /sys/class/i2c-dev/i2c-3/device/3-002d/wakealarm


Note that some older versions of hardware may not support this feature, if you don't see this file node in your system:
/sys/class/i2c-dev/i2c-3/device/3-002d/wakealarm
your board may be it does not support this feature.

5.18 Installing and Using OpenCV 4.1.2

OpenCV has been pre-installed in FriendlyCore (Version after 20191126) and does not require manual installation.
Please refre this link: https://github.com/friendlyarm/install-opencv-on-friendlycore/blob/s5pxx18/README.md
Quick test:

. /usr/bin/cv-env.sh
. /usr/bin/setqt5env-eglfs
cd /usr/local/share/opencv4/samples/python
python3 turing.py

5.19 Installing and Using Caffe

git clone https://github.com/friendlyarm/install-caffe-on-friendlycore
cd install-caffe-on-friendlycore
sudo ./install-caffe.sh

6 Update Log

6.1 2023-01-09

6.1.1 FriendlyCore:

  • optimized the systemd service

6.2 2020-10-26

  • FriendlyCore, Lubuntu:

Fix Bluetooth stability issue

6.3 2019-12-28

  • eflasher:

1) Supports flashing only some files, such as updating only the kernel and uboot in emmc
2) Added gui option to disable overlay filesystem
3) Add command line parameters to achieve one-click installation without interaction
4) Fix the issue that the same mac address will appear on different devices after backup and restore image
5) UI interface can now be configured with title, hide interface menus and buttons

6.4 2019-11-26

  • FriendlyCore:

Pre-installed OpenCV 4.1.2

6.5 2019-11-14

  • Introducing a new system FriendlyWrt:

FriendlyWrt is a customized OpenWrt system developed by FriendlyElec. It is open source and suitable for applications in IoT, NAS etc.
Please refre: http://wiki.friendlyelec.com/wiki/index.php/How_to_Build_FriendlyWrt

  • FriendlyCore, Lubuntu updated as follows:

1) Added support for new 4.3-inch screen YZ43
2) Compile bcmdhd as a module.

  • Android7 update is as follows:

1) Added support for new 4.3-inch screen YZ43
2) Optimize the touch experience when using HD900 screen under Android 7 system
3) Optimize the touch experience when using S702 screen under Android 7 system

6.6 2019-10-18

  • Android7, FriendlyCore, Lubuntu:

Fixed audio playback issue.

6.7 2019-09-30

  • Android7 updated as follows:

1)Added support for Android hardware access library (named FriendlyThing), support access to hardware resources such as GPIO, PWM, RTC, serial port and watchdog, providing open source demo
2) Added support for camera CAM500B (OV5640)
3) Added support for LCD W500 (800x480)
4) Fixed LCD-S430 compatibility issues

  • FriendlyCore, FriendlyDesktop updated as follows:

1) Kernel version updated to v4.4.172, same as Android 7
2) Added Docker support, support 32bit and 64bit file systems
3) Kernel configuration items are optimized to enable more features and device drivers

6.8 2019-07-18

  • Introducing a new system Android 7.1.2

1) Features similar to the old version of Android 5, support 4G, WiFi, Ethernet, Bluetooth, etc.
2) Kernel version: 4.4.172
3) Known issue: The camera is not working yet

  • Android/FriendlyCore/Lubuntu updated as follows:

1) Fix an issue where HD101B can't be touched in some cases
2) Fix GPIO configuration of Power key
3) Solve the problem of too small volume: the volume of the DAC is changed from -20dB to -6dB during playback.
4) Add more models of USB Wi-Fi support, built-in driver rtl8821CU.ko, rtl88XXau.ko

  • Updates for Lubuntu only:

1) Modify Lubuntu's Power key behavior to (without pop-ups) shut down directly
2) Add script xrotate.sh to simplify screen rotation settings (Note: screen rotation will lose performance)

  • The following updates are only available for NanoPC T2, Smart4418:

Support for reading Ethernet Mac addresses from the onboard EEPROM, only supports the following systems: FriendlyCore, Lubuntu, Android7

6.9 2019-06-25

Linux(Ubuntu 16.04/18.04) uses OverlayFS to enhance filesystem stability.

6.10 2019-06-03

1) Configure LED1 to be in heartbeat mode
2) Fix HDMI 1080P may have no display problem in some cases
3) Fix the issue that mysql cannot be installed under Linux
4) Fix the issue that the 1-wire touch resistance screen cannot be used under lubuntu

6.11 2019-01-24

1) Update uboot-v2014.07, uboot-v2016.01 for HD702V LCD
2) Adjust Qt5 font path

6.12 2018-12-17

  • Android5 updated as follows:

1) Add support for 4G network, support module: Quectel EC20
2) Add audio setting UI, you can set the default output to headphones or HDMI
3) Synchronously turn off the backlight of the one-line touch screen when the system Shutdown

  • FriendlyCore updated as follows:

1) Add OV5640 camera support
2) Update BL1 to improve system startup stability

  • Lubuntu updated as follows:

1) Add Chrome-browser browser, support web page 1080P hardware decoding, support WebGL
2) Set the audio output channel to HDMI by default (can be changed via /etc/asound.conf)
3) Update BL1 to improve system startup stability
4) Fixed some issues regarding the package error in the previous version
5) Adjust DPMS settings, turn off automatic sleep by default

6.13 March-04-2016

  • Released English version

6.14 March-09-2016

  • Corrected a typo

6.15 March-23-2016

  • Added section 11

6.16 March-27-2016

  • Corrected expression errors

6.17 April-08-2016

  • Added section 6.4.2 and 7.4
  • Updated section 6.5

6.18 June-30-2016

  • Added section 9 and 10

6.19 Sep-04-2016

  • Updated section 5.2.2 and 10.1.1

6.20 Sep-27-2016

  • Updated section 5.2.2, 7.5 and 8.2

6.21 Nov-2-2016

  • Updated section 6.2, 6.3, 6.4 and 12

6.22 Nov-17-2016

  • Added section 10.6

6.23 Dec-7-2016

  • Added section 6.6
  • Updated section 7.5

6.24 June-13-2016

  • Added section 7: added UbuntuCore
  • Added section 11.3: added DietPi

6.25 June-20-2016

  • Updated sections 6.2 & 6.3: Wireless connection and WiFi AP setting
  • Added section 3: software features