File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
adafruit_blinka/board/orangepi Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ # SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ """Pin definitions for the Orange Pi 3 LTS."""
5
+
6
+ from adafruit_blinka .microcontroller .allwinner .h6 import pin
7
+
8
+ PD26 = pin .PD26
9
+ SDA = pin .PD26
10
+ PD25 = pin .PD25
11
+ SCL = pin .PD25
12
+ PD22 = pin .PD22
13
+ PL2 = pin .PL2
14
+ PL3 = pin .PL3
15
+ PD24 = pin .PD24
16
+ UART3_RX = pin .PD24
17
+ PD18 = pin .PD18
18
+ PD23 = pin .PD23
19
+ UART3_TX = pin .PD23
20
+ PL10 = pin .PL10
21
+ PD15 = pin .PD15
22
+ PD16 = pin .PD16
23
+ PH5 = pin .PH5
24
+ PH6 = pin .PH6
25
+ PD21 = pin .PD21
26
+ PH4 = pin .PH4
27
+ SPI1_CLK = pin .PH4
28
+ PH3 = pin .PH3
29
+ SPI1_CS = pin .PH3
30
+ PL8 = pin .PL8
31
+
32
+ SCLK = pin .PH4
33
+ MOSI = pin .PH5
34
+ MISO = pin .PH6
Original file line number Diff line number Diff line change 131
131
elif board_id == ap_board .ORANGE_PI_3 :
132
132
from adafruit_blinka .board .orangepi .orangepi3 import *
133
133
134
+ elif board_id == ap_board .ORANGE_PI_3_LTS :
135
+ from adafruit_blinka .board .orangepi .orangepi3lts import *
136
+
134
137
elif board_id == ap_board .ORANGE_PI_3B :
135
138
from adafruit_blinka .board .orangepi .orangepi3b import *
136
139
You can’t perform that action at this time.
0 commit comments