From 72cbe7427a1c3ddf03621a99c4aee3061ba902f6 Mon Sep 17 00:00:00 2001 From: Martin S <99605907+schnurma@users.noreply.github.com> Date: Tue, 17 Jan 2023 11:55:30 +0100 Subject: [PATCH] Update board.py The detection for the SIMATIC IOT2050 Basic was added. Tested with the IOT2050 Basic (FS:04 12.2022) --- src/board.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/board.py b/src/board.py index aabef898..0aa76850 100644 --- a/src/board.py +++ b/src/board.py @@ -307,6 +307,9 @@ elif board_id == ap_board.SIEMENS_SIMATIC_IOT2050_ADV: from adafruit_blinka.board.siemens.siemens_iot2050 import * +elif board_id == ap_board.SIEMENS_SIMATIC_IOT2050_BASIC: + from adafruit_blinka.board.siemens.siemens_iot2050 import * + elif board_id == ap_board.AML_S905X_CC: from adafruit_blinka.board.librecomputer.aml_s905x_cc_v1 import *