This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:vim3:configurations:usb-gadget [2024/05/29 02:23] ivan [Configure DTS Overlays] |
products:sbc:vim3:configurations:usb-gadget [2025/08/13 03:55] (current) nick |
||
---|---|---|---|
Line 4: | Line 4: | ||
This document mainly introduces USB gadget. You will learn how to configure and enable USB gadget Usage. | This document mainly introduces USB gadget. You will learn how to configure and enable USB gadget Usage. | ||
+ | |||
+ | <WRAP important > | ||
+ | From version **1.7.5**, USB gadget is enabled by default, no need any setup, you can just skip the overlay and service setup. | ||
+ | </ | ||
===== System Configuration ===== | ===== System Configuration ===== | ||
Line 28: | Line 32: | ||
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 | ||
``` | ``` | ||
+ | |||
+ | <WRAP important > | ||
+ | If you have issues, please try the extra steps below: | ||
+ | |||
+ | ```shell | ||
+ | wget https:// | ||
+ | sudo cp / | ||
+ | ``` | ||
+ | </ | ||
+ | |||
<tabbox VIM3/3L with 5.15 kernel> | <tabbox VIM3/3L with 5.15 kernel> | ||
Line 49: | Line 63: | ||
```shell | ```shell | ||
- | wget https:// | ||
- | sudo cp / | ||
sudo systemctl enable usb-gadget-khadas.service | sudo systemctl enable usb-gadget-khadas.service | ||
``` | ``` | ||
Line 69: | Line 81: | ||
``` | ``` | ||
- | Also need to setup the IP address on your PC, e.g. '' | + | Also need to setup the IP address on your PC, e.g. '' |
Check network connection: | Check network connection: | ||
```shell | ```shell | ||
- | khadas@Khadas: | + | khadas@Khadas: |
PING 192.168.35.1 (192.168.35.1) from 192.168.35.100 usb0: 56(84) bytes of data. | 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.1: icmp_seq=1 ttl=64 time=0.218 ms | + | 64 bytes from 192.168.35.110: icmp_seq=1 ttl=64 time=0.218 ms |
- | 64 bytes from 192.168.35.1: icmp_seq=2 ttl=64 time=0.308 | + | 64 bytes from 192.168.35.110: icmp_seq=2 ttl=64 time=0.308 ms |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
- | 64 bytes from 192.168.35.1: | + | |
``` | ``` | ||
Line 93: | Line 97: | ||
```shell | ```shell | ||
+ | $ adb kill-server | ||
$ adb devices | $ adb devices | ||
* daemon not running; starting now at tcp:5037 | * daemon not running; starting now at tcp:5037 | ||
* daemon started successfully | * daemon started successfully | ||
List of devices attached | List of devices attached | ||
- | 37304e424e50 device | + | 363233573350 |
$ adb shell | $ adb shell | ||
- | # | + | root@Khadas:/ |
- | # | + | root@Khadas:/ |
- | # ls | + | root@Khadas:/# |
- | bin dev etc lib | + | root@Khadas:/# |
- | boot dtb.img | + | root@Khadas:/ |
- | # | + | bin |
+ | bin.usr-is-merged | ||
+ | boot home media run tmp | ||
+ | dev Image | ||
+ | dtb | ||
``` | ``` | ||
+ | ===== Troubleshooting ===== | ||
+ | |||
+ | If adb not work on windows, you can edit ''/ | ||
+ | |||
+ | ```diff | ||
+ | diff --git a/ | ||
+ | index 520a9b9a..299569f0 100755 | ||
+ | --- a/ | ||
+ | +++ b/ | ||
+ | @@ -57,7 +57,7 @@ echo " | ||
+ | echo " | ||
+ | |||
+ | # Bind function to configuration | ||
+ | -ln -s $F_RNDIS $GADGET/ | ||
+ | +#ln -s $F_RNDIS $GADGET/ | ||
+ | ln -s $GADGET/ | ||
+ | |||
+ | # Enable the Gadget | ||
+ | ``` |