Please enable javascript, or click here to visit my ecommerce web site powered by Shopify.
Jump to: navigation, search

Difference between revisions of "RockpiE/dev/adb"

< RockpiE‎ | dev
Line 30: Line 30:
 
You'd better follow the installation steps.
 
You'd better follow the installation steps.
  
=== Installation ===
+
=== Operations on ROCK Pi E ===
  
==== Windows ====
+
You can use [[RockpiS/ssh | ssh]] or [[rockpiE/dev/serial-console  | serial console]] to access ROCK Pi E.
  
Refer [[Rock/windows_adb | Windows ADB]]
+
Step 1: Add the following line to file '''/boot/uEnv.txt'''.
  
==== Linux ====
+
overlays=rk3328-uart2  '''rk3328-usb-otg'''
  
Refer [[Rock/linux_adb | Linux ADB]]
+
Step 2: Update rockchip-overlay, kernel, rockchip-adbd kernel packages.
  
===ADB Usage===
+
  $ sudo apt-get install -y rockchip-overlay
 +
  $ sudo apt-get install -y linux-4.4-rock-pi-e-latest
 +
  $ sudo apt-get install -y rockchip-adbd
  
When you have adb driver installed on PC,  you should '''modify the /boot/uEnv.txt''' file to add the following
+
Step 3: Reboot the device.
verbosity=7
+
console=ttyS2,1500000n8
+
overlays=rk3328-uart2  '''rk3328-usb-otg'''
+
rootuuid=d8873f71-da3d-48f9-bab5-d1736409f170
+
initrdsize=0x6ed0f0
+
kernelversion=4.4.194-19-rockchip-g287ff75afc47
+
initrdimg=initrd.img-4.4.194-19-rockchip-g287ff75afc47
+
kernelimg=vmlinuz-4.4.194-19-rockchip-g287ff75afc47
+
fdtfile=rockchip/rk3328-rock-pi-e-rtl8211f.dtb
+
  
====Check adb devices====
+
  $ sudo reboot
  
  $ adb devices
+
=== Operations on PC ===
  List of devices attached
+
  0123456789ABCDEF device
+
  
If adb device is not detected on host PC, try to [[RockpiS/ssh | ssh]] or use [[rockpiE/dev/serial-console  | serial console]] first and try the following:
+
==== Windows ====
  
Firstly, update rockchip-overlay and  kernel packages.
+
Install adb tool under Wins PC. Refer [[Rock/windows_adb | Windows ADB]]
  
  $ sudo apt-get install -y rockchip-overlay
+
==== Linux ====
  $ sudo apt-get install -y linux-4.4-rock-pi-e-latest
+
  
Secondly, install rockchip-adb package.
+
Install adb tool under Linux PC. Refer [[Rock/linux_adb | Linux ADB]]
  
  $ sudo apt-get install -y rockchip-adbd
+
=== ADB Usage ===
  
Finally, start rockchip service
+
Here we use adb to access ROCK Pi E unser Linux PC.
 +
 
 +
====Check adb devices====
 +
 
 +
  $ adb devices
 +
  List of devices attached
 +
  0123456789ABCDEF device
  
  $ sudo systemctl start rockchip-adbd
 
 
====Login/Shell====
 
====Login/Shell====
  
Line 113: Line 108:
 
   How do you do! PC!
 
   How do you do! PC!
  
=== Usage of rockchi-adb service ===
+
=== FAQ ===
 +
 
 +
==== Usage of rockchi-adb service ====
  
 
Start rockchip-adb service
 
Start rockchip-adb service
Line 129: Line 126:
 
   $ sudo systemctl restart rockchip-adbd
 
   $ sudo systemctl restart rockchip-adbd
  
 
+
If you still have issue with adb, start a new post on the forum. https://forum.radxa.com/c/rockpie
If you still have issue with adb, start a new post on the forum. https://forum.radxa.com/c/dev
+

Revision as of 07:11, 12 August 2021

    ROCK Pi E >  Development >  Using adb

Requirement

  • ROCK Pi E mainboard
  • eMMC module
  • Power adapter
  • USB Male A to Dupont cable.
    • One port is Male A type and the other includes three Dupont lines.
    • Hardware connection
ROCK Pi E 40-pin Header USB Interface USB Male A to Dupont Cable
PIN#18 Data+ Green wire
PIN#16 Data- White wire
PIN#14 GND Black wire

Rock-pi-e-usb-mala-a-to-dupont-cable.jpg

Hardware support

Support hardware platform:

  • ROCK Pi E V1.1 or later

You'd better follow the installation steps.

Operations on ROCK Pi E

You can use ssh or serial console to access ROCK Pi E.

Step 1: Add the following line to file /boot/uEnv.txt.

overlays=rk3328-uart2  rk3328-usb-otg

Step 2: Update rockchip-overlay, kernel, rockchip-adbd kernel packages.

 $ sudo apt-get install -y rockchip-overlay 
 $ sudo apt-get install -y linux-4.4-rock-pi-e-latest
 $ sudo apt-get install -y rockchip-adbd

Step 3: Reboot the device.

 $ sudo reboot

Operations on PC

Windows

Install adb tool under Wins PC. Refer Windows ADB

Linux

Install adb tool under Linux PC. Refer Linux ADB

ADB Usage

Here we use adb to access ROCK Pi E unser Linux PC.

Check adb devices

 $ adb devices
 List of devices attached 
 0123456789ABCDEF	device

Login/Shell

 $ adb shell
 # 

And type /bin/bash followed by Enter key to switch to bash shell.

 $ adb shell
 # /bin/bash
 root@rockpie:/# 
 root@rockpie:/# 

Transmit files from PC to ROCK Pi E

 $ adb push <local path> <remote path>

Example:

On PC, input the following in Terminal

 $ adb push /tmp/meet-rockpie.md /home/rock
 0 KB/s (26 bytes in 0.045s)

Check on ROCK Pi E

 root@rockpie:/home/rock# cat meet-rockpie.md 
 How do you do! ROCK Pi E!

Transmit files from ROCK Pi E to PC

 $ adb pull <remote path> <local path>

Example:

 $ adb pull /home/rock/meet-pc.md /tmp/
 0 KB/s (19 bytes in 0.086s)
 
 $ cat /tmp/meet-pc.md 
 How do you do! PC!

FAQ

Usage of rockchi-adb service

Start rockchip-adb service

 $ sudo systemctl start rockchip-adbd

Stop rockchip-adb service

 $ sudo systemctl stop rockchip-adbd

Reload rockchip-adb service

 $ sudo systemctl reload rockchip-adbd
 or
 $ sudo systemctl restart rockchip-adbd

If you still have issue with adb, start a new post on the forum. https://forum.radxa.com/c/rockpie