forked from meshtastic/firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathluckfox-lyra-pi-gpio-map.yaml
More file actions
390 lines (346 loc) · 9.16 KB
/
Copy pathluckfox-lyra-pi-gpio-map.yaml
File metadata and controls
390 lines (346 loc) · 9.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# Luckfox Lyra Pi Complete GPIO Pin Mapping Reference
# Format compatible with Meshtasticd YAML configuration
#
# GPIO Calculation: pin = bank * 32 + (group * 8 + X)
# Groups: A=0, B=1, C=2, D=3
#
# This mapping is based on the Lyra Zero W/Raspberry Pi pin mapping CSV
# All pins are referenced by their physical header position (1-40)
# ============================================================================
# POWER PINS (Not GPIO)
# ============================================================================
Pin_1_3V3:
type: Power
voltage: 3.3V
note: Output
Pin_2_VSYS:
type: Power
voltage: 5V
note: System voltage input
Pin_4_VSYS:
type: Power
voltage: 5V
note: System voltage input
Pin_17_3V3:
type: Power
voltage: 3.3V
note: Output
# ============================================================================
# GROUND PINS (Not GPIO)
# ============================================================================
Pin_6_GND:
type: Ground
Pin_9_GND:
type: Ground
Pin_14_GND:
type: Ground
Pin_20_GND:
type: Ground
Pin_25_GND:
type: Ground
Pin_30_GND:
type: Ground
Pin_34_GND:
type: Ground
Pin_39_GND:
type: Ground
# ============================================================================
# GPIO PINS (Bank 0 - gpiochip 0)
# ============================================================================
# Pin 3: GPIO0_A0 (RM_IO0) - I2C SDA default
Pin_3_GPIO0_A0:
lyra_gpio: GPIO0_A0
rm_io: RM_IO0
pin: 0 # 0*32 + (0*8 + 0) = 0
gpiochip: 0
line: 0
default_function: I2C0_SDA
raspberry_pi_equivalent: GPIO2
# Pin 5: GPIO0_A1 (RM_IO1) - I2C SCL default
Pin_5_GPIO0_A1:
lyra_gpio: GPIO0_A1
rm_io: RM_IO1
pin: 1 # 0*32 + (0*8 + 1) = 1
gpiochip: 0
line: 1
default_function: I2C0_SCL
raspberry_pi_equivalent: GPIO3
# Pin 7: GPIO0_A2 (RM_IO2)
Pin_7_GPIO0_A2:
lyra_gpio: GPIO0_A2
rm_io: RM_IO2
pin: 2 # 0*32 + (0*8 + 2) = 2
gpiochip: 0
line: 2
default_function: GPIO
raspberry_pi_equivalent: GPIO4
# Pin 8: GPIO0_C6 (RM_IO22) - UART TX default
Pin_8_GPIO0_C6:
lyra_gpio: GPIO0_C6
rm_io: RM_IO22
pin: 22 # 0*32 + (2*8 + 6) = 22
gpiochip: 0
line: 22
default_function: UART0_TX
raspberry_pi_equivalent: GPIO14
note: Debug serial port
# Pin 10: GPIO0_C7 (RM_IO23) - UART RX default
Pin_10_GPIO0_C7:
lyra_gpio: GPIO0_C7
rm_io: RM_IO23
pin: 23 # 0*32 + (2*8 + 7) = 23
gpiochip: 0
line: 23
default_function: UART0_RX
raspberry_pi_equivalent: GPIO15
note: Debug serial port
# Pin 11: GPIO0_A3 (RM_IO3)
Pin_11_GPIO0_A3:
lyra_gpio: GPIO0_A3
rm_io: RM_IO3
pin: 3 # 0*32 + (0*8 + 3) = 3
gpiochip: 0
line: 3
default_function: GPIO
raspberry_pi_equivalent: GPIO17
# Pin 12: GPIO0_B6 (RM_IO14)
Pin_12_GPIO0_B6:
lyra_gpio: GPIO0_B6
rm_io: RM_IO14
pin: 14 # 0*32 + (1*8 + 6) = 14
gpiochip: 0
line: 14
default_function: GPIO
raspberry_pi_equivalent: GPIO18
# Pin 13: GPIO0_A4 (RM_IO4)
Pin_13_GPIO0_A4:
lyra_gpio: GPIO0_A4
rm_io: RM_IO4
pin: 4 # 0*32 + (0*8 + 4) = 4
gpiochip: 0
line: 4
default_function: GPIO
raspberry_pi_equivalent: GPIO27
# Pin 15: GPIO0_A5 (RM_IO5) - SPI MISO default
Pin_15_GPIO0_A5:
lyra_gpio: GPIO0_A5
rm_io: RM_IO5
pin: 5 # 0*32 + (0*8 + 5) = 5
gpiochip: 0
line: 5
default_function: SPI0_MISO
raspberry_pi_equivalent: GPIO22
# Pin 16: GPIO0_B5 (RM_IO13)
Pin_16_GPIO0_B5:
lyra_gpio: GPIO0_B5
rm_io: RM_IO13
pin: 13 # 0*32 + (1*8 + 5) = 13
gpiochip: 0
line: 13
default_function: GPIO
raspberry_pi_equivalent: GPIO23
# Pin 18: GPIO0_B4 (RM_IO12)
Pin_18_GPIO0_B4:
lyra_gpio: GPIO0_B4
rm_io: RM_IO12
pin: 12 # 0*32 + (1*8 + 4) = 12
gpiochip: 0
line: 12
default_function: GPIO
raspberry_pi_equivalent: GPIO24
# Pin 19: GPIO0_A6 (RM_IO6) - SPI MOSI default
Pin_19_GPIO0_A6:
lyra_gpio: GPIO0_A6
rm_io: RM_IO6
pin: 6 # 0*32 + (0*8 + 6) = 6
gpiochip: 0
line: 6
default_function: SPI0_MOSI
raspberry_pi_equivalent: GPIO10
# Pin 21: GPIO0_A7 (RM_IO7) - SPI MISO default
Pin_21_GPIO0_A7:
lyra_gpio: GPIO0_A7
rm_io: RM_IO7
pin: 7 # 0*32 + (0*8 + 7) = 7
gpiochip: 0
line: 7
default_function: SPI0_MISO
raspberry_pi_equivalent: GPIO9
# Pin 22: GPIO0_B3 (RM_IO11)
Pin_22_GPIO0_B3:
lyra_gpio: GPIO0_B3
rm_io: RM_IO11
pin: 11 # 0*32 + (1*8 + 3) = 11
gpiochip: 0
line: 11
default_function: GPIO
raspberry_pi_equivalent: GPIO25
# Pin 23: GPIO0_B0 (RM_IO8) - SPI CLK default
Pin_23_GPIO0_B0:
lyra_gpio: GPIO0_B0
rm_io: RM_IO8
pin: 8 # 0*32 + (1*8 + 0) = 8
gpiochip: 0
line: 8
default_function: SPI0_CLK
raspberry_pi_equivalent: GPIO11
# Pin 24: GPIO0_B2 (RM_IO10) - SPI CS0 default
Pin_24_GPIO0_B2:
lyra_gpio: GPIO0_B2
rm_io: RM_IO10
pin: 10 # 0*32 + (1*8 + 2) = 10
gpiochip: 0
line: 10
default_function: SPI0_CS0
raspberry_pi_equivalent: GPIO8
# Pin 26: GPIO0_B1 (RM_IO9) - SPI CS1 default
Pin_26_GPIO0_B1:
lyra_gpio: GPIO0_B1
rm_io: RM_IO9
pin: 9 # 0*32 + (1*8 + 1) = 9
gpiochip: 0
line: 9
default_function: SPI0_CS1
raspberry_pi_equivalent: GPIO7
# ============================================================================
# GPIO PINS (Bank 1 - gpiochip 1)
# ============================================================================
# Pin 27: GPIO1_B1 (RM_IO24) - I2C ID_SD
Pin_27_GPIO1_B1:
lyra_gpio: GPIO1_B1
rm_io: RM_IO24
pin: 41 # 1*32 + (1*8 + 1) = 41
gpiochip: 1
line: 9
default_function: I2C_ID_SD
raspberry_pi_equivalent: ID_SD
# Pin 28: GPIO1_D3 (RM_IO31) - I2C ID_SC
Pin_28_GPIO1_D3:
lyra_gpio: GPIO1_D3
rm_io: RM_IO31
pin: 59 # 1*32 + (3*8 + 3) = 59
gpiochip: 1
line: 27
default_function: I2C_ID_SC
raspberry_pi_equivalent: ID_SC
# Pin 29: GPIO1_B2 (RM_IO25)
Pin_29_GPIO1_B2:
lyra_gpio: GPIO1_B2
rm_io: RM_IO25
pin: 42 # 1*32 + (1*8 + 2) = 42
gpiochip: 1
line: 10
default_function: GPIO
raspberry_pi_equivalent: GPIO5
# Pin 31: GPIO1_B3 (RM_IO26)
Pin_31_GPIO1_B3:
lyra_gpio: GPIO1_B3
rm_io: RM_IO26
pin: 43 # 1*32 + (1*8 + 3) = 43
gpiochip: 1
line: 11
default_function: GPIO
raspberry_pi_equivalent: GPIO6
# Pin 32: GPIO1_D2 (RM_IO30)
Pin_32_GPIO1_D2:
lyra_gpio: GPIO1_D2
rm_io: RM_IO30
pin: 58 # 1*32 + (3*8 + 2) = 58
gpiochip: 1
line: 26
default_function: GPIO
raspberry_pi_equivalent: GPIO12
# Pin 33: GPIO1_C2 (RM_IO27)
Pin_33_GPIO1_C2:
lyra_gpio: GPIO1_C2
rm_io: RM_IO27
pin: 50 # 1*32 + (2*8 + 2) = 50
gpiochip: 1
line: 18
default_function: GPIO
raspberry_pi_equivalent: GPIO13
# Pin 35: GPIO1_A1 (No RM_IO)
Pin_35_GPIO1_A1:
lyra_gpio: GPIO1_A1
rm_io: null
pin: 33 # 1*32 + (0*8 + 1) = 33
gpiochip: 1
line: 1
default_function: GPIO
raspberry_pi_equivalent: GPIO19
note: Not routed through Matrix IO
# Pin 36: GPIO1_A5 (No RM_IO)
Pin_36_GPIO1_A5:
lyra_gpio: GPIO1_A5
rm_io: null
pin: 37 # 1*32 + (0*8 + 5) = 37
gpiochip: 1
line: 5
default_function: GPIO
raspberry_pi_equivalent: GPIO16
note: Not routed through Matrix IO
# Pin 37: GPIO1_A2 (No RM_IO)
Pin_37_GPIO1_A2:
lyra_gpio: GPIO1_A2
rm_io: null
pin: 34 # 1*32 + (0*8 + 2) = 34
gpiochip: 1
line: 2
default_function: GPIO
raspberry_pi_equivalent: GPIO26
note: Not routed through Matrix IO
# Pin 38: GPIO1_A4 (No RM_IO)
Pin_38_GPIO1_A4:
lyra_gpio: GPIO1_A4
rm_io: null
pin: 36 # 1*32 + (0*8 + 4) = 36
gpiochip: 1
line: 4
default_function: GPIO
raspberry_pi_equivalent: GPIO20
note: Not routed through Matrix IO
# Pin 40: GPIO1_A3 (No RM_IO)
Pin_40_GPIO1_A3:
lyra_gpio: GPIO1_A3
rm_io: null
pin: 35 # 1*32 + (0*8 + 3) = 35
gpiochip: 1
line: 3
default_function: GPIO
raspberry_pi_equivalent: GPIO21
note: Not routed through Matrix IO
# ============================================================================
# QUICK REFERENCE: PINS NOT ROUTED THROUGH MATRIX IO
# ============================================================================
# These pins (35, 36, 37, 38, 40) are GPIO1_A* pins that do NOT have RM_IO
# assignments and may have NATIVE GPIO access (no Matrix IO multiplexer latency).
# These are the BEST candidates for timing-critical applications like LR1121 radios.
#
# Pin 35: GPIO1_A1 - pin: 33, gpiochip: 1, line: 1
# Pin 36: GPIO1_A5 - pin: 37, gpiochip: 1, line: 5
# Pin 37: GPIO1_A2 - pin: 34, gpiochip: 1, line: 2
# Pin 38: GPIO1_A4 - pin: 36, gpiochip: 1, line: 4
# Pin 40: GPIO1_A3 - pin: 35, gpiochip: 1, line: 3
# ============================================================================
# ============================================================================
# EXAMPLE MESHTASTIC CONFIG USING NATIVE GPIO PINS
# ============================================================================
# These pins (35-40) are recommended for radio modules requiring precise timing
#
# Example_Radio_Config:
# CS:
# pin: 35 # Pin 40 - GPIO1_A3
# gpiochip: 1
# line: 3
# IRQ:
# pin: 37 # Pin 36 - GPIO1_A5
# gpiochip: 1
# line: 5
# Busy:
# pin: 36 # Pin 38 - GPIO1_A4
# gpiochip: 1
# line: 4
# Reset:
# pin: 14 # Pin 12 - GPIO0_B6
# gpiochip: 0
# line: 14