Added support for Orange Pi Zero 3

This commit is contained in:
mlodedrwale 2025-06-28 14:02:58 +00:00
parent 46f0930498
commit 630b050a6b
2 changed files with 3 additions and 0 deletions

View file

@ -428,6 +428,8 @@ class Board:
board = boards.ORANGE_PI_2 board = boards.ORANGE_PI_2
elif board_value == "orangepipc2": elif board_value == "orangepipc2":
board = boards.ORANGE_PI_PC2 board = boards.ORANGE_PI_PC2
elif board_value == "orangepizero3":
board = boards.ORANGE_PI_ZERO_3
elif board_value == "orangepi3b": elif board_value == "orangepi3b":
board = boards.ORANGE_PI_3B board = boards.ORANGE_PI_3B
elif board_value == "orangepi3": elif board_value == "orangepi3":

View file

@ -60,6 +60,7 @@ ORANGE_PI_PC2 = "ORANGE_PI_PC2"
ORANGE_PI_ZERO_PLUS_2H5 = "ORANGE_PI_ZERO_PLUS_2H5" ORANGE_PI_ZERO_PLUS_2H5 = "ORANGE_PI_ZERO_PLUS_2H5"
ORANGE_PI_ZERO_PLUS = "ORANGE_PI_ZERO_PLUS" ORANGE_PI_ZERO_PLUS = "ORANGE_PI_ZERO_PLUS"
ORANGE_PI_ZERO_2 = "ORANGE_PI_ZERO_2" ORANGE_PI_ZERO_2 = "ORANGE_PI_ZERO_2"
ORANGE_PI_ZERO_3 = "ORANGE_PI_ZERO_3"
ORANGE_PI_3 = "ORANGE_PI_3" ORANGE_PI_3 = "ORANGE_PI_3"
ORANGE_PI_3B = "ORANGE_PI_3B" ORANGE_PI_3B = "ORANGE_PI_3B"
ORANGE_PI_3_LTS = "ORANGE_PI_3_LTS" ORANGE_PI_3_LTS = "ORANGE_PI_3_LTS"