Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 39c0f158fe | |||
| 9f51718235 | |||
| 01b3a189ed | |||
| 3ef2ca02a6 | |||
| cc0b37af8b | |||
| 17c0ffab67 | |||
| 29fb570ae5 | |||
| b667926315 | |||
| 1522244561 | |||
| ca46da2501 | |||
| aebf3aaab8 | |||
| f8dac3c07f | |||
| c6f1642209 | |||
| 39aeb47d0e |
@@ -225,3 +225,4 @@ cython_debug/
|
||||
# PyPI configuration file
|
||||
.pypirc
|
||||
|
||||
*.html
|
||||
|
||||
@@ -21,6 +21,7 @@ Scripts and documentation for setting up a Raspberry Pi (Zero W 1 or 2) for use
|
||||
- [Turning your Raspberry Pi Zero into a USB Gadget](https://learn.adafruit.com/turning-your-raspberry-pi-zero-into-a-usb-gadget/serial-gadget) Official Adafruit guide to gadget mode to allow the USB port to be used as a serial console to connect to it. We had trouble getting it to work in 2026 due to some changes in Raspberry Pi OS.
|
||||
- [Python gpiozero library](https://gpiozero.readthedocs.io/en/stable/) a simple interface for working with GPIO devices
|
||||
- [CircuitPython Libraries on Linux and Raspberry Pi](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi) This is one option for GPIO, I2C, SPI, and PWM access in python.
|
||||
- [Comparing Rasbperry Pi python interfaces](https://raspberry.tips/en/raspberrypi-tutorials/raspberry-pi-gpio-python)
|
||||
|
||||
## For the Future
|
||||
- [Setting up Zeroconf to use local names (.local) to access your Pi](https://learn.adafruit.com/bonjour-zeroconf-networking-for-windows-and-linux): this does not work on iot-research because multicast and MDNS are broken.
|
||||
|
||||
+32
-2
@@ -2,10 +2,34 @@
|
||||
# Adapted from
|
||||
# "Using OTG mode on Raspberry Pi SBCs"
|
||||
# https://pip-assets.raspberrypi.com/categories/685-app-notes-guides-whitepapers/documents/RP-009276-WP/Using-OTG-mode-on-Raspberry-Pi-SBCs
|
||||
sudo modprobe libcomposite
|
||||
|
||||
# This script only works if you are running it as root
|
||||
if [ $(id -u) -ne 0 ]; then
|
||||
echo "Please run as root or use sudo"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
# Is the dwc2 overlay installed? Nothing will work if it isn't.
|
||||
if lsmod | grep -q "dwc2"; then
|
||||
echo "DWC2 module loaded, setting up OTG gadget serial and ethernet" | logger -t $0 -p info
|
||||
echo "DWC2 module loaded"
|
||||
else
|
||||
echo "DWC2 module missing. Aborting OTG setup." | logger -t $0 -p info
|
||||
echo "DWC2 module missing"
|
||||
systemctl disable serial-getty@ttyGS0.service
|
||||
exit 1
|
||||
fi
|
||||
|
||||
modprobe libcomposite
|
||||
cd /sys/kernel/config/usb_gadget
|
||||
if [ -d "MyGadget" ]; then
|
||||
echo "MyGadget already exists. Aborting OTG setup." | logger -t $0 -p info
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Create our new gadget
|
||||
sudo mkdir MyGadget
|
||||
mkdir MyGadget
|
||||
cd MyGadget
|
||||
# Add some boilerplate data that the gadget needs
|
||||
echo 0x1d6b > idVendor # Linux Foundation’s USB VID. Replace with your own VID if required
|
||||
@@ -30,6 +54,7 @@ echo "Config 1" > configs/c.1/strings/0x409/configuration
|
||||
### Remember to create the storage block device first
|
||||
## cd /root
|
||||
### Example: Make a 256 MB file to act as "USB stick"
|
||||
## Only create it once or it will delete the previous content
|
||||
## sudo dd if=/dev/zero of=drive.bin bs=1M count=256
|
||||
### Create a VFAT file system on the backing store
|
||||
## sudo mkfs.vfat drive.bin
|
||||
@@ -45,9 +70,14 @@ mkdir functions/acm.usb0
|
||||
ln -s functions/acm.usb0 configs/c.1/
|
||||
|
||||
## Ethernet (RNDIS and ECM)
|
||||
## Of note, this may cause the IP to show up as 127.0.0.1
|
||||
## and wireless to suddenly fail to connect
|
||||
mkdir functions/ecm.usb0
|
||||
ln -s functions/ecm.usb0 configs/c.1/
|
||||
|
||||
## USB Device Controller update
|
||||
UDC=`ls /sys/class/udc`
|
||||
echo $UDC > UDC
|
||||
|
||||
# Enable the gettys
|
||||
systemctl enable serial-getty@ttyGS0.service
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
# Initial connection to the Raspberry Pi
|
||||
Now that you have an image with ssh and Raspberry Pi connect on your SD, you can connect to the pi
|
||||
|
||||
|
||||
## Connecting using Raspberry Pi Connect
|
||||
1. Login to https://connect.raspberrypi.com if you haven't already
|
||||
1. Look at the list of devices, find the one you want, and click on "Connect"
|
||||

|
||||
1. A remote shell window will pop up
|
||||

|
||||
@@ -1,11 +1,16 @@
|
||||
# Gadget Mode to setup a serial connection over USB
|
||||
Prepare Raspberry Pi OS connection over a microUSB serial cable
|
||||
|
||||
Important: You will want to disable the serial console on RX/TX if you are trying to use that serial port for communicating with other devices.
|
||||
|
||||
Based upon Adafruit guide: https://learn.adafruit.com/turning-your-raspberry-pi-zero-into-a-usb-gadget/serial-gadget:
|
||||
The author discovered the guide was out of date, consulted the [2025 Raspberry Pi whitepaper on OTG](https://pip-assets.raspberrypi.com/categories/685-app-notes-guides-whitepapers/documents/RP-009276-WP/Using-OTG-mode-on-Raspberry-Pi-SBCs), found additional errors, and was finally able to correct them thanks to this blog https://www.isticktoit.net/?p=1383
|
||||
|
||||
## Important :
|
||||
- **Using the Gadget Mode will make the usb port unable to connect to a mouse or keyboard!!!** You will need to disable it make them work again.
|
||||
- You will want to disable the serial console on RX/TX in `raspi-config` if you are trying to use that serial port for communicating with other devices.
|
||||
|
||||
|
||||
## Procedure
|
||||
|
||||
Make sure you have your USB cable plugged into the left port **USB** and not the right port marked **PWR**.
|
||||
1. Open a connection to the device via ssh or Raspberry Pi Connect
|
||||
1. Become root (the superuser)
|
||||
@@ -34,8 +39,10 @@ Make sure you have your USB cable plugged into the left port **USB** and not the
|
||||
cd rover-pi/Scripts/
|
||||
./gadget.sh
|
||||
```
|
||||
1. Install the systemd script
|
||||
`cp serial-ether-gadget.service /lib/systemd/system/.`
|
||||
1. Install the systemd
|
||||
```
|
||||
cp serial-ether-gadget.service /lib/systemd/system/.
|
||||
```
|
||||
1. Enable the service
|
||||
```
|
||||
systemctl enable serial-ether-gadget.service
|
||||
|
||||
@@ -23,7 +23,7 @@ We don't have many monitors and keyboards in V207 for students to use, so we wil
|
||||

|
||||
1. Once you have uploaded your `id_edcsa.pub` file it should look like this.
|
||||

|
||||
1. Since we don't have enough monitors, we will need another way to setup the initial connection. The officially supported option is Raspberry Pi Connect. You will need to:
|
||||
1. Since we don't have a monitor, keyboard, and mouse available, we will need another way to setup the initial connection. The officially supported option is Raspberry Pi Connect. You will need to enable it then:
|
||||
1. Register for an account first at https://connect.raspberrypi.com
|
||||
2. Confirm your account with email
|
||||
2. Login with that account
|
||||
@@ -42,12 +42,5 @@ We don't have many monitors and keyboards in V207 for students to use, so we wil
|
||||
1. Now you get to watch the writing then verifying.
|
||||

|
||||

|
||||
1. The process is complete!
|
||||
1. The process is complete! Now you can [connect to your pi](connect.md)
|
||||

|
||||
|
||||
## Connecting using Raspberry Pi Connect
|
||||
1. Login to https://connect.raspberrypi.com if you haven't already
|
||||
1. Look at the list of devices, find the one you want, and click on "Connect"
|
||||

|
||||
1. A remote shell window will pop up
|
||||

|
||||
|
||||
Reference in New Issue
Block a user