This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
products:sbc:vim3:configurations:usb-gadget [2022/07/06 23:28] frank created |
products:sbc:vim3:configurations:usb-gadget [2024/10/15 23:49] (current) nick [Usage of ADB] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== USB Gadget ====== | + | ====== |
===== Introduction ===== | ===== Introduction ===== | ||
Line 12: | Line 12: | ||
==== Configure DTS Overlays ==== | ==== Configure DTS Overlays ==== | ||
+ | |||
+ | <tabbox VIM3/3L with 4.9 kernel> | ||
+ | |||
+ | Take VIM3 as an example. | ||
Open ''/ | Open ''/ | ||
- | ```sh | + | ```shell |
- | khadas@khadas: | + | sudo vim / |
``` | ``` | ||
Line 24: | Line 28: | ||
overlays=uart3 pwm_f i2c3 os08a10 --> overlays=uart3 pwm_f i2c3 os08a10 otg-device | overlays=uart3 pwm_f i2c3 os08a10 --> overlays=uart3 pwm_f i2c3 os08a10 otg-device | ||
``` | ``` | ||
+ | <tabbox VIM3/3L with 5.15 kernel> | ||
+ | |||
+ | Take VIM3 as an example. | ||
+ | |||
+ | Open ''/ | ||
+ | |||
+ | ```shell | ||
+ | sudo vim / | ||
+ | ``` | ||
+ | |||
+ | Add '' | ||
+ | |||
+ | ``` | ||
+ | fdt_overlays=otg-device | ||
+ | ``` | ||
+ | |||
+ | </ | ||
==== Enable Service ==== | ==== Enable Service ==== | ||
- | ```sh | + | ```shell |
- | khadas@khadas: | + | sudo systemctl enable usb-gadget-khadas.service |
``` | ``` | ||
+ | |||
+ | <WRAP important > | ||
+ | If you have issues, please try the extra steps below: | ||
+ | |||
+ | ```shell | ||
+ | wget https:// | ||
+ | sudo cp / | ||
+ | ``` | ||
+ | </ | ||
+ | |||
Reboot to effect. | Reboot to effect. | ||
- | ```sh | + | ```shell |
- | khadas@khadas:~$ sync | + | sync |
- | khadas@khadas:~$ sudo reboot | + | sudo reboot |
+ | ``` | ||
+ | |||
+ | ===== RNDIS Setup IP Address ===== | ||
+ | |||
+ | Setup IP address manyally, e.g. setup IP address as '' | ||
+ | |||
+ | ```shell | ||
+ | sudo ifconfig usb0 192.168.35.100 up | ||
+ | ``` | ||
+ | |||
+ | Also need to setup the IP address on your PC, e.g. '' | ||
+ | |||
+ | Check network connection: | ||
+ | |||
+ | ```shell | ||
+ | khadas@Khadas:~$ ping -I usb0 192.168.35.110 | ||
+ | PING 192.168.35.1 (192.168.35.1) from 192.168.35.100 usb0: 56(84) bytes of data. | ||
+ | 64 bytes from 192.168.35.110: | ||
+ | 64 bytes from 192.168.35.110: | ||
+ | ``` | ||
+ | |||
+ | ===== Usage of ADB ===== | ||
+ | |||
+ | Try to access the devices via adb. | ||
+ | |||
+ | ```shell | ||
+ | $ adb kill-server | ||
+ | $ adb devices | ||
+ | * daemon not running; starting now at tcp:5037 | ||
+ | * daemon started successfully | ||
+ | List of devices attached | ||
+ | 363233573350 | ||
+ | |||
+ | $ adb shell | ||
+ | root@Khadas:/# | ||
+ | root@Khadas:/# | ||
+ | root@Khadas:/# | ||
+ | root@Khadas:/# | ||
+ | root@Khadas:/# | ||
+ | bin dtb.img | ||
+ | bin.usr-is-merged | ||
+ | boot | ||
+ | dev Image | ||
+ | dtb initrd.img | ||
``` | ``` | ||