denko-piboard 0.13.2 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +154 -132
- data/Rakefile +0 -5
- data/board_maps/README.md +59 -0
- data/board_maps/orange_pi_zero_2w.yml +85 -0
- data/board_maps/radxa_zero3.yml +88 -0
- data/board_maps/raspberry_pi.yml +95 -0
- data/denko_piboard.gemspec +6 -7
- data/examples/digital_io/bench_out.rb +22 -0
- data/examples/digital_io/rotary_encoder.rb +31 -0
- data/examples/display/ssd1306.rb +43 -0
- data/examples/i2c/bitbang_aht10.rb +18 -0
- data/examples/i2c/bitbang_search.rb +24 -0
- data/examples/i2c/bitbang_ssd1306_bench.rb +29 -0
- data/examples/i2c/search.rb +24 -0
- data/examples/led/blink.rb +10 -0
- data/examples/led/fade.rb +22 -0
- data/examples/led/ws2812_bounce.rb +36 -0
- data/examples/motor/servo.rb +16 -0
- data/examples/pi_system_monitor.rb +10 -8
- data/examples/pulse_io/buzzer.rb +34 -0
- data/examples/pulse_io/infrared.rb +25 -0
- data/examples/sensor/aht10.rb +17 -0
- data/examples/sensor/dht.rb +24 -0
- data/examples/sensor/ds18b20.rb +59 -0
- data/examples/sensor/hcsr04.rb +16 -0
- data/examples/sensor/neat_tph_readings.rb +32 -0
- data/examples/spi/bb_loopback.rb +31 -0
- data/examples/spi/loopback.rb +37 -0
- data/examples/spi/output_register.rb +38 -0
- data/lib/denko/piboard.rb +11 -2
- data/lib/denko/piboard_base.rb +18 -64
- data/lib/denko/piboard_core.rb +148 -130
- data/lib/denko/piboard_core_optimize_lookup.rb +31 -0
- data/lib/denko/piboard_hardware_pwm.rb +27 -0
- data/lib/denko/piboard_i2c.rb +59 -82
- data/lib/denko/piboard_i2c_bb.rb +48 -0
- data/lib/denko/piboard_infrared.rb +7 -44
- data/lib/denko/piboard_led_array.rb +9 -0
- data/lib/denko/piboard_map.rb +121 -38
- data/lib/denko/piboard_one_wire.rb +42 -0
- data/lib/denko/piboard_pulse.rb +11 -68
- data/lib/denko/piboard_servo.rb +8 -7
- data/lib/denko/piboard_spi.rb +44 -74
- data/lib/denko/piboard_spi_bb.rb +41 -0
- data/lib/denko/piboard_tone.rb +15 -26
- data/lib/denko/piboard_version.rb +1 -1
- data/scripts/99-denko.rules +9 -0
- data/scripts/set_permissions.rb +131 -0
- metadata +45 -17
- data/ext/gpiod/extconf.rb +0 -9
- data/ext/gpiod/gpiod.c +0 -179
- data/lib/gpiod.rb +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c16debfc8c34bd8bcca26bc7bfacb260b807d795a36be181c2b9216d8c65da8
|
4
|
+
data.tar.gz: 06d80503b03ba7cc4dea13f1737d822ad8b1c8546db57da6a8dad9708232f6c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f374de73471722936aebb24831c8bc02f7eace99ca8874ab5a6675554bb593a8b6d79b1617e80dca08e263a60858627214665dfb65f973cda19e4cb3d55a403
|
7
|
+
data.tar.gz: c1584302567d48e2f02dac57870b85cd113c8c60ce547853a83fd7945550c2aa67f095ceee1fa3987d168ac05a9456b74fca8565448a6ef61b77d9a05804e0ed
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,33 +1,22 @@
|
|
1
|
-
# denko-piboard
|
1
|
+
# denko-piboard
|
2
2
|
|
3
|
-
|
3
|
+
Use Linux single-board-computer GPIO in Ruby.
|
4
4
|
|
5
|
-
This gem adds support for the Raspberry Pi GPIO interface to the [`denko`](https://github.com/denko-rb/denko) gem. Unlike the main gem, which requires an external microcontroller, this lets you to connect peripherals directly to the Pi.
|
6
|
-
|
7
|
-
`Denko::PiBoard` is a drop-in replacement for `Denko::Board`, which would represent a connected micrcontroller. Everything maps to the Pi's built-in GPIO pins instead, and Ruby runs on the Pi itself.
|
8
|
-
|
9
|
-
**Note:** This is not for the Raspberry Pi Pico (W) / RP2040. That microcontroller works with the main gem.
|
10
|
-
|
11
|
-
## Example
|
12
5
|
```ruby
|
6
|
+
# Turn LED on when a button is held down, off when released.
|
13
7
|
require 'denko/piboard'
|
14
8
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
# LED connected to GPIO4.
|
19
|
-
led = Denko::LED.new(board: board, pin: 4)
|
9
|
+
board = Denko::PiBoard.new
|
10
|
+
led = Denko::LED.new(board: board, pin: 260)
|
11
|
+
button = Denko::DigitalIO::Button.new(board: board, pin: 259, mode: :input_pullup)
|
20
12
|
|
21
|
-
#
|
22
|
-
button = Denko::DigitalIO::Button.new(board: board, pin: 17, pullup: true)
|
23
|
-
|
24
|
-
# Callback runs when button is down (0)
|
13
|
+
# Callback fires when button is down (0)
|
25
14
|
button.down do
|
26
15
|
puts "Button down"
|
27
16
|
led.on
|
28
17
|
end
|
29
18
|
|
30
|
-
# Callback
|
19
|
+
# Callback fires when button is up (1)
|
31
20
|
button.up do
|
32
21
|
puts "Button up"
|
33
22
|
led.off
|
@@ -37,145 +26,178 @@ end
|
|
37
26
|
sleep
|
38
27
|
```
|
39
28
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
29
|
+
## Linux GPIO Features
|
30
|
+
- [x] Internal Pull-Up/Down
|
31
|
+
- [x] Open Drain/Source
|
32
|
+
- [x] Digital Read/Write
|
33
|
+
- [x] Digital Listen (Alerts)
|
34
|
+
- Interrupt driven, unlike `denko` microcontroller implementation 1ms polling
|
35
|
+
- Built in software debounce (1us by default)
|
36
|
+
- Alerts are read from a FIFO queue up to 65,536. Oldest alerts are lost first.
|
37
|
+
- [ ] Analog Read (ADC)
|
38
|
+
- [ ] Analog Write (DAC)
|
39
|
+
- [x] Software PWM Out (any pin)
|
40
|
+
- [x] Hardware PWM Out (specific pins per board)
|
41
|
+
- [x] Tone Out (via Software PWM or Hardware PWM)
|
42
|
+
- [x] Servo (via Hardware PWM)
|
43
|
+
- [x] Infrared Out (via Hardware PWM)
|
44
|
+
- [x] Hardware I2C
|
45
|
+
- [x] Multiple interfaces
|
46
|
+
- [x] Hardware SPI
|
47
|
+
- [x] Multiple interfaces
|
48
|
+
- [x] WS2812 addressable LED via SPI MOSI
|
49
|
+
- [ ] SPI Listeners from `denko`
|
50
|
+
- [ ] UART
|
51
|
+
- [x] Ultrasonic Input (for HC-SR04 and similar)
|
52
|
+
- [x] Pulse Sequence Input (for DHT enviro sensors and similar)
|
53
|
+
- [x] Bit-Bang I2C
|
54
|
+
- [x] Bit-Bang SPI
|
55
|
+
- [x] Bit-Bang 1-Wire
|
61
56
|
|
62
57
|
## Support
|
63
58
|
|
64
59
|
#### Hardware
|
65
60
|
|
66
|
-
|
67
|
-
:question: Should work, but not verified
|
61
|
+
In theory, this should work on any SBC, running Linux, with drivers for the relevant GPIO/I2C/SPI/PWM subsystems available on the system-on-chip (SoC). This is just a list of chips and products confirmed working.
|
68
62
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
63
|
+
:green_heart: Known working
|
64
|
+
:heart: Awaiting testing
|
65
|
+
:question: Might work. No hardware
|
66
|
+
|
67
|
+
| Chip | Status | Products | Notes |
|
68
|
+
| :-------- | :------: | :---------------------- |------ |
|
69
|
+
| Allwinner H618 | :green_heart: | Orange Pi Zero 2W | DietPi
|
70
|
+
| Rockchip RK3566 | :green_heart: | Radxa Zero 3W/E, Radxa Rock 3C | Armbian
|
71
|
+
| BCM2835 | :green_heart: | Raspberry Pi 1, Raspberry Pi Zero (W) | Raspberry Pi OS
|
72
|
+
| BCM2836/7 | :question: | Raspberry Pi 2 |
|
73
|
+
| BCM2837A0/B0 | :green_heart: | Raspberry Pi 3 | Raspberry Pi OS
|
74
|
+
| BCM2711 | :green_heart: | Raspberry Pi 4, Raspberry Pi 400 | Raspberry Pi OS
|
75
|
+
| BCM2710A1 | :green_heart: | Raspberry Pi Zero 2W | Raspberry Pi OS
|
76
|
+
| BCM2712 | :question: | Raspberry Pi 5 |
|
76
77
|
|
77
78
|
#### Software
|
78
79
|
|
79
80
|
- Operating Systems:
|
80
|
-
-
|
81
|
-
-
|
82
|
-
|
83
|
-
Note: Both with kernel version 6.1 or higher.
|
81
|
+
- DietPi (Bookworm)
|
82
|
+
- Amrbian (Bookworm)
|
83
|
+
- Raspberry Pi OS (Bookworm)
|
84
84
|
|
85
85
|
- Rubies:
|
86
|
-
- Ruby
|
87
|
-
|
88
|
-
|
86
|
+
- Ruby 3.3.5 +YJIT
|
87
|
+
|
88
|
+
## Install
|
89
|
+
|
90
|
+
#### Install the lg C library
|
91
|
+
```console
|
92
|
+
# Requirements to install lgpio C
|
93
|
+
sudo apt install swig python3-dev python3-setuptools gcc make
|
89
94
|
|
90
|
-
|
95
|
+
# Temporary fork of: wget https://github.com/joan2937/lg
|
96
|
+
wget https://github.com/vickash/lg/archive/refs/heads/master.zip
|
91
97
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
98
|
+
# Install lgpio C
|
99
|
+
unzip master.zip
|
100
|
+
cd lg-master
|
101
|
+
make
|
102
|
+
sudo make install
|
103
|
+
```
|
96
104
|
|
97
|
-
|
105
|
+
#### Install the denko-piboard gem
|
106
|
+
```console
|
107
|
+
# Latest Ruby + YJIT from rbenv works best, but Ruby 3 from apt works too.
|
108
|
+
# Install system Ruby anyway to automate permissions startup script.
|
109
|
+
sudo apt install ruby ruby-dev
|
98
110
|
|
99
|
-
|
100
|
-
```shell
|
101
|
-
sudo apt install pigpio libgpiod-dev
|
111
|
+
sudo gem install denko-piboard
|
102
112
|
```
|
113
|
+
**Note:** `sudo` may be needed before `gem install` if using the system Ruby.
|
114
|
+
|
115
|
+
## Enable Hardware
|
116
|
+
|
117
|
+
**Note:** These are simplified instructions for a few SBCs, to get you going quickly. denko-piboard uses standard Linux interfaces, so should work for many. See [the board maps readme](board_maps/README.md).
|
103
118
|
|
104
|
-
|
105
|
-
|
106
|
-
|
119
|
+
### Orange Pi Zero 2W
|
120
|
+
- For DietPi OS specifically
|
121
|
+
- 2 PWMs on GPIO 226 and 227 (not matching the docs) are enabled without any setup.
|
122
|
+
- Save the [default map](board_maps/orange_pi_zero_2w.yml) as `~/.denko_piboard_map.yml` on your Zero2W.
|
123
|
+
- Add/edit the lines below in `/boot/dietpiEnv.txt`, and reboot.
|
124
|
+
|
125
|
+
```
|
126
|
+
# /dev/i2c-3 (I2C3) @ 100 kHz
|
127
|
+
# /dev/spidev1.0 (SPI1) with first chip select (CS0) enabled
|
128
|
+
overlay_prefix=sun50i-h616
|
129
|
+
overlays=i2c1-pi spidev1_0
|
107
130
|
```
|
108
|
-
This automatically installs dependency gems: `denko` and `pigpio`.
|
109
131
|
|
110
|
-
|
132
|
+
### Radxa Zero3W/E
|
133
|
+
- For Armbian OS specifically. Newer and performs better than latest Radxa OS or DietPi available.
|
134
|
+
- Unfortunately, Armbian does not package all device tree overlays for the RK3566. I built binaries for this default config, on kernel `6.6.31-current-sunxi64`, and made them available [here](https://github.com/vickash/linux-sbc-overlays/tree/master/radxa/rockchip). To use, download the `.dtbo` files into `/boot/dtb/rockchip/overlay` on your Zero3. Make sure your kernel version matches.
|
135
|
+
|
136
|
+
If you rather build the overlays yourself, that repo contains the script too. On the Zero3:
|
137
|
+
```console
|
138
|
+
sudo apt install device-tree-compiler
|
139
|
+
ruby rk3568_denko_overlay_install.rb
|
140
|
+
```
|
111
141
|
|
112
|
-
|
142
|
+
- Save the [default map](board_maps/radxa_zero3.yml) as `~/.denko_piboard_map.yml` on your Zero3.
|
143
|
+
- Add/edit the lines below in `/boot/armbianEnv.txt`, and reboot.
|
113
144
|
|
114
|
-
#### pigpiod
|
115
|
-
The `pigpio` package installs `pigpiod`, which must run in the background (as root) for Ruby scripts to work. You should only need to start it once per boot. Automate it, or start manually with:
|
116
|
-
```shell
|
117
|
-
sudo pigpiod -s 10
|
118
145
|
```
|
119
|
-
|
146
|
+
# /dev/i2c-3 (I2C3) @ 100 kHz
|
147
|
+
# /dev/spidev3.0 (SPI3) with first chip select (CS0) enabled
|
148
|
+
# 2 PWMs on GPIO 105 and 106
|
149
|
+
overlay_prefix=rk3568
|
150
|
+
overlays=i2c3-m0 spi3-m1-cs0-spidev pwm8-m0 pwm9-m0
|
151
|
+
```
|
152
|
+
|
153
|
+
**Note:** The Radxa docs are missing `I2C3_SDA_M0` and `I2C3_SCL_M0` in the function columns for GPIOs 32 and 33 respectively. This is an error. I2C3 works on these pins.
|
154
|
+
|
155
|
+
### Raspberry Pi 4 and Lower
|
156
|
+
- For Raspberry Pi OS specifically
|
157
|
+
- Save the [default map](board_maps/raspberry_pi.yml) as `~/.denko_piboard_map.yml` on your Raspberry Pi.
|
158
|
+
- Add the lines below to `/boot/config.txt`, and reboot.
|
120
159
|
|
121
|
-
#### libgpiod
|
122
|
-
Depending on your Pi and OS, `libgpiod` may limit GPIO access. If this happens, some scripts will fail. It is only used for digital read/write operations, so test with a simple script like blinking an LED. To get permission, add your user account to the `gpio` group:
|
123
160
|
```
|
124
|
-
|
161
|
+
# 2 PWMS on GPIO 12 and 13
|
162
|
+
dtoverlay=pwm-2chan,pin=12,func=4,pin2=13,func2=4
|
163
|
+
# /dev/i2c-1 (I2C1) @ 400 kHz
|
164
|
+
dtparam=i2c_arm=on
|
165
|
+
dtparam=i2c_arm_baudrate=400000
|
166
|
+
# /dev/spidev0.0 (SPI0) with first chip select (CS0) enabled
|
167
|
+
dtoverlay=spi0-1cs
|
125
168
|
```
|
126
169
|
|
127
|
-
|
128
|
-
|
129
|
-
```shell
|
130
|
-
# On Raspberry Pi OS:
|
131
|
-
sudo raspi-config
|
170
|
+
## Get Permissions
|
171
|
+
By default, only the Linux `root` user can use GPIO / I2C / SPI / PWM. If you have a default board map at `~/.denko_piboard_map.yml`, save [this script](scripts/set_permissions.rb) to your SBC, then run it:
|
132
172
|
|
133
|
-
|
134
|
-
|
173
|
+
```console
|
174
|
+
ruby set_permissions.rb
|
135
175
|
```
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
### Feature Exclusivity
|
165
|
-
- PWM Out / Servo Out
|
166
|
-
- Using either of these on **any** pin disables the Pi's PCM audio output globally.
|
167
|
-
|
168
|
-
- Tone Out / Infrared Out
|
169
|
-
- Both of these use pigpio's wave interface, which only has a single instance. Calling either on **any** pin automatically stops any running instance that exists. Both features can co-exist in a script, but cannot happen at the same time.
|
170
|
-
|
171
|
-
### To Be Implemented
|
172
|
-
- OneWire
|
173
|
-
- Hardware UART
|
174
|
-
- BitBang I2C
|
175
|
-
- BitBang SPI
|
176
|
-
- BitBang UART
|
177
|
-
- WS2812
|
178
|
-
|
179
|
-
### Incompatible
|
180
|
-
- EEPROM (Use the filesystem for persistence instead)
|
181
|
-
- Analog IO (No analog pins on Raspberry Pi. Use ADC or DAC over I2C or SPI)
|
176
|
+
|
177
|
+
It will load load the default board map, then:
|
178
|
+
- Create any necessary Linux groups
|
179
|
+
- Add your user to the relevant groups
|
180
|
+
- Change ownership and permissions for devices in the map, so you can read/write them
|
181
|
+
|
182
|
+
**Note:** `sudo` is required.
|
183
|
+
|
184
|
+
**Note:** If you automate this script to run at boot (recommended), it will run as root. Set the `USERNAME` constant to your Linux user's name as a String literal. This ensures the map loads from your home, and changes are applied to your user, not root.
|
185
|
+
|
186
|
+
## Modifying Examples From Main Gem
|
187
|
+
Some [examples](examples) are included in this gem, but the [main denko gem](https://github.com/denko-rb/denko/tree/master/examples) is more comprehensive. Those are written for connected microcontrollers, `Denko::Board`, but can be modified for `Denko::PiBoard`:
|
188
|
+
|
189
|
+
1. Replace setup code:
|
190
|
+
```ruby
|
191
|
+
# Replace this:
|
192
|
+
require 'bundler/setup'
|
193
|
+
require 'denko'
|
194
|
+
# With this:
|
195
|
+
require 'denko/piboard'
|
196
|
+
|
197
|
+
# Replace this:
|
198
|
+
board = Denko::Board.new(Denko::Connection::Serial.new)
|
199
|
+
# With this:
|
200
|
+
board = Denko::PiBoard.new
|
201
|
+
```
|
202
|
+
|
203
|
+
2. Change pin numbers and I2C/SPI device indices as needed.
|
data/Rakefile
CHANGED
@@ -0,0 +1,59 @@
|
|
1
|
+
# Creating Custom Board Maps
|
2
|
+
|
3
|
+
You will need:
|
4
|
+
- Your SBC, running a recent (5.10 kernel or later) Linux distribution
|
5
|
+
- A working understanding of how to enable/disable device tree overlays in Linux
|
6
|
+
- Documentation for your board, specifically:
|
7
|
+
- Its pinout, with "friendly" GPIO numbers
|
8
|
+
- Which GPIO numbers correspond to which device tree overlays
|
9
|
+
|
10
|
+
## Overlays
|
11
|
+
|
12
|
+
The physical pins on your SBC can internally connect to diffent hardware devices within the SoC. The default is regular GPIO. To use hardware PWM, I2C and SPI, Linux device tree overlays tell the kernel to reserve pins, disconnected them from GPIO, and connect them to the other hardware instead.
|
13
|
+
|
14
|
+
This happens at boot, so there are side-effects:
|
15
|
+
- Pins reserved by I2C or SPI can't be used for GPIO, unless the interface is disabled, and the SBC rebooted.
|
16
|
+
- With some asbraction tricks, a PWM can work as a regular GPIO, but **for digital output only**, and it's slower.
|
17
|
+
- I2C frequency can only be changed at boot time, not on a per-transmission basis.
|
18
|
+
|
19
|
+
There are a couple other issues too:
|
20
|
+
- One SoC may have GPIOs on multiple `/dev/gpiochip*`s, with non-unque line numbers.
|
21
|
+
- PWM is called by its `pwmchip*` and `pwm*` channel, not GPIO number.
|
22
|
+
- I2C and SPI are called by index (N) from `/dev/i2c-N` or `/dev/spidev-N.0`, not GPIO numbers.
|
23
|
+
|
24
|
+
To deal with this complexity, and standardize the user interface, denko-piboard uses board maps.
|
25
|
+
|
26
|
+
## Board Maps
|
27
|
+
|
28
|
+
A board map is a YAML file, defining all the GPIO, PWM, I2C and SPI resources enabled on the SBC.
|
29
|
+
|
30
|
+
It follows these conventons:
|
31
|
+
- `Denko::PiBoard.new` will raise unless it finds a board map
|
32
|
+
- It accepts a board map file path as its only argument
|
33
|
+
- If that isn't given, it looks for `.denko_piboard_map.yml`, in the user's home directory.
|
34
|
+
- In the map, individual GPIOs are referred to (keyed by) their "friendly" or human-readable" numbers
|
35
|
+
- Theoretically arbitrary, but rule of thumb is: "unique numbers from the SBC's documentation"
|
36
|
+
- These are NOT physical pin numbers from the pinout
|
37
|
+
- These might match, but are NOT necessarily `/dev/gpiochip*` line numbers. Those can be non-unique, if multiple gpiochips.
|
38
|
+
- Each GPIO number declares its:
|
39
|
+
- Linux gpiochip
|
40
|
+
- Line on that gpiochip
|
41
|
+
- Physical number on the SBC's pinout (optional)
|
42
|
+
- Each PWM declares:
|
43
|
+
- Which GPIO number it reserves when enabled (this is its key)
|
44
|
+
- Its Linux pwmchip
|
45
|
+
- Its pwm channel on that chip
|
46
|
+
- Each I2C or SPI interface declares:
|
47
|
+
- Its index, N from `/dev/i2c-N` or `/dev/spidev-N.0` (this is its key)
|
48
|
+
- All the GPIO numbers it reserves, keyed to their names. Eg. `miso:`, `sda:` etc.
|
49
|
+
|
50
|
+
This information enables denko-piboard to:
|
51
|
+
- Refer to GPIOs by a single, user-friendly, unique number (rather than a tuple of gpiochip and line)
|
52
|
+
- Refer to PWMs by the GPIO number they multiplex with (rather than a tuple of pwmchip and channel)
|
53
|
+
- Refer to I2C and SPI by their Linux device indices
|
54
|
+
- Raise errors if you try to use any reserved pin. This fails silently otherwise, which is confusing.
|
55
|
+
|
56
|
+
There are pre-made maps for some boards [here](board_maps), which can be followed as templates. In general, these enable:
|
57
|
+
- 2 PWM pins
|
58
|
+
- 1 I2C interface (on physical pins 3,5 when possible)
|
59
|
+
- 1 SPI interface (on physical pins 19,21,23 when possible)
|
@@ -0,0 +1,85 @@
|
|
1
|
+
#
|
2
|
+
# Tested on Orange Pi Zero 2W, running DietPi, Kernel 6.6.31-current-sunxi64
|
3
|
+
# Note: PWM channels 1 and 2 work without an overlay.
|
4
|
+
#
|
5
|
+
---
|
6
|
+
pins:
|
7
|
+
# Left side (odd numbered)
|
8
|
+
# PIN 1 is 3V3
|
9
|
+
264: { phy: 3, chip: 0, line: 264 }
|
10
|
+
263: { phy: 5, chip: 0, line: 263 }
|
11
|
+
269: { phy: 7, chip: 0, line: 269 }
|
12
|
+
# PIN 9 is GND
|
13
|
+
226: { phy: 11, chip: 0, line: 226 }
|
14
|
+
227: { phy: 13, chip: 0, line: 227 }
|
15
|
+
261: { phy: 15, chip: 0, line: 261 }
|
16
|
+
# PIN 17 is 3V3
|
17
|
+
231: { phy: 19, chip: 0, line: 231 }
|
18
|
+
232: { phy: 21, chip: 0, line: 232 }
|
19
|
+
230: { phy: 23, chip: 0, line: 230 }
|
20
|
+
# PIN 25 is GND
|
21
|
+
266: { phy: 27, chip: 0, line: 266 }
|
22
|
+
256: { phy: 29, chip: 0, line: 256 }
|
23
|
+
271: { phy: 31, chip: 0, line: 271 }
|
24
|
+
268: { phy: 33, chip: 0, line: 268 }
|
25
|
+
258: { phy: 35, chip: 0, line: 258 }
|
26
|
+
272: { phy: 37, chip: 0, line: 272 }
|
27
|
+
# PIN 39 is GND
|
28
|
+
|
29
|
+
# Right side (even numbered)
|
30
|
+
# PIN 2 is 5V
|
31
|
+
# PIN 4 is 5V
|
32
|
+
# PIN 6 is GND
|
33
|
+
224: { phy: 8, chip: 0, line: 224 }
|
34
|
+
225: { phy: 10, chip: 0, line: 225 }
|
35
|
+
257: { phy: 12, chip: 0, line: 257 }
|
36
|
+
# PIN 14 is GND
|
37
|
+
270: { phy: 16, chip: 0, line: 270 }
|
38
|
+
228: { phy: 18, chip: 0, line: 228 }
|
39
|
+
# PIN 20 is GND
|
40
|
+
262: { phy: 22, chip: 0, line: 262 }
|
41
|
+
229: { phy: 24, chip: 0, line: 229 }
|
42
|
+
233: { phy: 6, chip: 0, line: 233 }
|
43
|
+
265: { phy: 28, chip: 0, line: 265 }
|
44
|
+
# PIN 30 is GND
|
45
|
+
267: { phy: 32, chip: 0, line: 267 }
|
46
|
+
# PIN 34 is GND
|
47
|
+
76: { phy: 36, chip: 0, line: 76 }
|
48
|
+
260: { phy: 38, chip: 0, line: 260 }
|
49
|
+
259: { phy: 40, chip: 0, line: 259 }
|
50
|
+
|
51
|
+
pwms:
|
52
|
+
#
|
53
|
+
# Works without overlays in /boot/dietpiEnv.txt
|
54
|
+
# NOTE: These DO NOT match the official Orange Pi documentation.
|
55
|
+
#
|
56
|
+
227:
|
57
|
+
pwmchip: 0
|
58
|
+
channel: 1
|
59
|
+
226:
|
60
|
+
pwmchip: 0
|
61
|
+
channel: 2
|
62
|
+
|
63
|
+
i2cs:
|
64
|
+
#
|
65
|
+
# Add to overlays= line in /boot/dietpiEnv.txt
|
66
|
+
# i2c1-pi
|
67
|
+
#
|
68
|
+
# To get 400kHz, save this alternate overlay to the /boot/dtb/allwinner/overlay directory:
|
69
|
+
# https://github.com/vickash/linux-sbc-overlays/blob/master/orangepi/sun50i-h616-i2c1-pi_400k.dtbo
|
70
|
+
#
|
71
|
+
# Then, in /boot/dietpiEnv.txt, use instead:
|
72
|
+
# i2c1-pi_400k
|
73
|
+
3:
|
74
|
+
scl: 263
|
75
|
+
sda: 264
|
76
|
+
|
77
|
+
spis:
|
78
|
+
#
|
79
|
+
# Add to overlays= line in /boot/dietpiEnv.txt
|
80
|
+
# spidev1_0
|
81
|
+
1:
|
82
|
+
clk: 230
|
83
|
+
mosi: 231
|
84
|
+
miso: 232
|
85
|
+
cs0: 229
|
@@ -0,0 +1,88 @@
|
|
1
|
+
#
|
2
|
+
# Tested on Radxa Zero 3W, running Armbian, Kernel 6.1.75-vendor-rk35xx
|
3
|
+
#
|
4
|
+
# Note: Overlays are not packaged with Armbian for some reason. Hopefully this changes soon,
|
5
|
+
# but I've built the .dtbo files for the kernel given above, and made them available here:
|
6
|
+
# https://github.com/vickash/linux-sbc-overlays/tree/master/radxa/rockchip
|
7
|
+
# To use them, save all the .dtbo files into:
|
8
|
+
# /boot/dtb/rockchip/overlay
|
9
|
+
#
|
10
|
+
---
|
11
|
+
pins:
|
12
|
+
# Left side (odd numbered)
|
13
|
+
# PIN 1 is 3V3
|
14
|
+
32: { phy: 3, chip: 1, line: 0 }
|
15
|
+
33: { phy: 5, chip: 1, line: 1 }
|
16
|
+
116: { phy: 7, chip: 3, line: 20 }
|
17
|
+
# PIN 9 is GND
|
18
|
+
97: { phy: 11, chip: 3, line: 1 }
|
19
|
+
98: { phy: 13, chip: 3, line: 2 }
|
20
|
+
104: { phy: 15, chip: 3, line: 8 }
|
21
|
+
# PIN 17 is 3V3
|
22
|
+
147: { phy: 19, chip: 4, line: 19 }
|
23
|
+
149: { phy: 21, chip: 4, line: 21 }
|
24
|
+
146: { phy: 23, chip: 4, line: 18 }
|
25
|
+
# PIN 25 is GND
|
26
|
+
138: { phy: 27, chip: 4, line: 10 }
|
27
|
+
107: { phy: 29, chip: 3, line: 11 }
|
28
|
+
108: { phy: 31, chip: 3, line: 12 }
|
29
|
+
115: { phy: 33, chip: 3, line: 19 }
|
30
|
+
100: { phy: 35, chip: 3, line: 4 }
|
31
|
+
36: { phy: 37, chip: 1, line: 4 }
|
32
|
+
# PIN 39 is GND
|
33
|
+
|
34
|
+
# Right side (even numbered)
|
35
|
+
# PIN 2 is 5V
|
36
|
+
# PIN 4 is 5V
|
37
|
+
# PIN 6 is GND
|
38
|
+
24: { phy: 8, chip: 0, line: 24 }
|
39
|
+
25: { phy: 10, chip: 0, line: 25 }
|
40
|
+
99: { phy: 12, chip: 3, line: 3 }
|
41
|
+
# PIN 14 is GND
|
42
|
+
105: { phy: 16, chip: 3, line: 9 }
|
43
|
+
106: { phy: 18, chip: 3, line: 10 }
|
44
|
+
# PIN 20 is GND
|
45
|
+
113: { phy: 22, chip: 3, line: 17 }
|
46
|
+
150: { phy: 24, chip: 4, line: 22 }
|
47
|
+
# PIN 26 is NC
|
48
|
+
139: { phy: 28, chip: 4, line: 11 }
|
49
|
+
# PIN 30 is GND
|
50
|
+
114: { phy: 32, chip: 3, line: 18 }
|
51
|
+
# PIN 34 is GND
|
52
|
+
103: { phy: 36, chip: 3, line: 7 }
|
53
|
+
102: { phy: 38, chip: 3, line: 6 }
|
54
|
+
101: { phy: 40, chip: 3, line: 5 }
|
55
|
+
|
56
|
+
pwms:
|
57
|
+
#
|
58
|
+
# Add to overlays= line in /boot/amrbianEnv.txt
|
59
|
+
# pwm8-m0 pwm9-m0
|
60
|
+
105:
|
61
|
+
pwmchip: 0
|
62
|
+
channel: 0
|
63
|
+
overlay: pwm8-m0
|
64
|
+
106:
|
65
|
+
pwmchip: 1
|
66
|
+
channel: 0
|
67
|
+
overlay: pwm9-m0
|
68
|
+
|
69
|
+
i2cs:
|
70
|
+
#
|
71
|
+
# Add to overlays= line in /boot/amrbianEnv.txt
|
72
|
+
# i2c3-m0
|
73
|
+
3:
|
74
|
+
scl: 33
|
75
|
+
sda: 32
|
76
|
+
reserved_addresses: [0x22]
|
77
|
+
overlay: i2c3-m0
|
78
|
+
|
79
|
+
spis:
|
80
|
+
#
|
81
|
+
# Add to overlays= line in /boot/amrbianEnv.txt
|
82
|
+
# ispi3-m1-cs0-spidev
|
83
|
+
3:
|
84
|
+
clk: 146
|
85
|
+
mosi: 147
|
86
|
+
miso: 149
|
87
|
+
cs0: 150
|
88
|
+
overlay: spi3-m1-cs0-spidev
|