-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #846 from nopnop2002/main
added orangepipc2 board
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: MIT | ||
"""Pin definitions for the Orange Pi PC2.""" | ||
|
||
from adafruit_blinka.microcontroller.allwinner.h5 import pin | ||
|
||
PA12 = pin.PA12 | ||
SDA = pin.PA12 | ||
PA11 = pin.PA11 | ||
SCL = pin.PA11 | ||
PA6 = pin.PA6 | ||
PA1 = pin.PA1 | ||
PA0 = pin.PA0 | ||
PA3 = pin.PA3 | ||
PA15 = pin.PA15 | ||
MOSI = pin.SPI1_MOSI | ||
PA16 = pin.PA16 | ||
MISO = pin.SPI1_MISO | ||
PA14 = pin.PA14 | ||
SCK = pin.SPI1_SCLK | ||
SCLK = pin.SPI1_SCLK | ||
PA19 = pin.PA19 | ||
PA7 = pin.PA7 | ||
PA8 = pin.PA8 | ||
PA9 = pin.PA9 | ||
PA10 = pin.PA10 | ||
PD11 = pin.PD11 | ||
|
||
PC5 = pin.PC5 | ||
TX = pin.PC5 | ||
PC6 = pin.PC6 | ||
RX = pin.PC6 | ||
PD14 = pin.PD14 | ||
PC4 = pin.PC4 | ||
PC7 = pin.PC7 | ||
PA2 = pin.PA2 | ||
PA13 = pin.PA13 | ||
PA21 = pin.PA21 | ||
PA18 = pin.PA18 | ||
PG8 = pin.PG8 | ||
PG9 = pin.PG9 | ||
PG6 = pin.PG6 | ||
PG7 = pin.PG7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters