Skip to content

Commit

Permalink
ODROID-M1/S: Fix the i2c and serial pins
Browse files Browse the repository at this point in the history
This is to support default dtbo for circuitpython in kernel

Signed-off-by: Steve Jeong <steve@how2flow.net>
  • Loading branch information
how2flow committed Jan 3, 2024
1 parent 90a96ca commit 80ea367
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/adafruit_blinka/board/hardkernel/odroidm1.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@
D33 = pin.GPIO0B_5
D35 = pin.GPIO3D_5

SDA = D27
SCL = D28
SDA = D3
SCL = D5

SCLK = D23
MOSI = D19
MISO = D21
CS = D24

UART0_TX = D13
UART0_RX = D11
UART1_TX = D8
UART1_RX = D10
UART0_TX = D8
UART0_RX = D10
UART1_TX = D13
UART1_RX = D11

UART1_CTS = D29
UART1_RTS = D31
Expand Down
12 changes: 6 additions & 6 deletions src/adafruit_blinka/board/hardkernel/odroidm1s.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@
EXT_D13 = pin.GPIO3_B3
EXT_D14 = pin.GPIO3_B4

SDA = D27
SCL = D28
SDA = D3
SCL = D5

SCLK = D23
MOSI = D19
MISO = D21
CS = D24

UART0_TX = D13
UART0_RX = D11
UART1_TX = D8
UART1_RX = D10
UART0_TX = D8
UART0_RX = D10
UART1_TX = D13
UART1_RX = D11

UART1_CTS = D29
UART1_RTS = D31
Expand Down

0 comments on commit 80ea367

Please sign in to comment.