X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/77d0cf50437ba20ff0aeb0c2065f969bf76d8d3d..120c7a7f4c7559ede6a7d098e4800663381fc93d:/src/board.py diff --git a/src/board.py b/src/board.py index f277bc1..0c8a645 100755 --- a/src/board.py +++ b/src/board.py @@ -167,6 +167,9 @@ elif board_id == ap_board.DRAGONBOARD_410C: elif board_id == ap_board.FTDI_FT232H: from adafruit_blinka.board.ftdi_ft232h import * +elif board_id == ap_board.FTDI_FT2232H: + from adafruit_blinka.board.ftdi_ft2232h import * + elif board_id == ap_board.BINHO_NOVA: from adafruit_blinka.board.binho_nova import * @@ -230,8 +233,15 @@ elif "sphinx" in sys.modules: elif board_id is None: import platform import pkg_resources - package = str(pkg_resources.get_distribution('adafruit_platformdetect')).split() - raise NotImplementedError("{1} version {2} was unable to identify the board and/or microcontroller running the {0} platform. Please be sure you have the latest packages running: 'pip3 install --upgrade adafruit-blinka adafruit-platformdetect'".format(platform.system(),package[0],package[1])) + + package = str(pkg_resources.get_distribution("adafruit_platformdetect")).split() + raise NotImplementedError( + "{1} version {2} was unable to identify the board and/or microcontroller running " + "the {0} platform. Please be sure you have the latest packages running: 'pip3 install " + "--upgrade adafruit-blinka adafruit-platformdetect'".format( + platform.system(), package[0], package[1] + ) + ) else: raise NotImplementedError("Board not supported {}".format(board_id))