From 9ee08d1a18594ea49963dd3914ea518fd7b20a86 Mon Sep 17 00:00:00 2001 From: agstewart Date: Fri, 18 Jul 2025 01:47:03 -0500 Subject: [PATCH] fixed missing boards.py statement --- src/board.py | 3 +++ 1 file changed, 3 insertions(+) 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 * -- 2.49.0