From: agstewart Date: Fri, 18 Jul 2025 06:47:03 +0000 (-0500) Subject: fixed missing boards.py statement X-Git-Tag: 8.64.0^2~3 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/9ee08d1a18594ea49963dd3914ea518fd7b20a86 fixed missing boards.py statement --- diff --git a/src/board.py b/src/board.py index f926dd0..18aa878 100644 --- a/src/board.py +++ b/src/board.py @@ -146,6 +146,9 @@ elif board_id == ap_board.ORANGE_PI_4_LTS: elif board_id in (ap_board.ORANGE_PI_5, ap_board.ORANGE_PI_5_MAX): from adafruit_blinka.board.orangepi.orangepi5 import * +elif board_id == ap_board.ORANGE_PI_5_PRO: + from adafruit_blinka.board.orangepi.orangepi5 import * + elif board_id == ap_board.ORANGE_PI_5_PLUS: from adafruit_blinka.board.orangepi.orangepi5plus import *