]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - test/src/testing/board/__init__.py
remove unnecessary function bodies
[Adafruit_Blinka-hackapet.git] / test / src / testing / board / __init__.py
index 0732f78b4954c69486ea33d27b6bb80e7a9440f9..10dc6a861074c0a58e2f9839ece912bf1d221b97 100644 (file)
@@ -1,22 +1,27 @@
+# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
+#
+# SPDX-License-Identifier: MIT
 """Configuration of testing fixtures depending on the board layout"""
 from adafruit_blinka import agnostic
 
+import board
+
 if agnostic.board == "feather_m0_express":
-    default_pin = feather_m0_express.D5
-    led_pin = feather_m0_express.D13
+    default_pin = board.D5
+    led_pin = board.D13
     led_hardwired = True
     led_inverted = False
 elif agnostic.board == "feather_huzzah":
-    from adafruit_blinka.board import feather_huzzah
-
-    default_pin = feather_huzzah.GPIO4
-    led_pin = feather_huzzah.GPIO0 # red led
+    default_pin = board.GPIO4
+    led_pin = board.GPIO0  # red led
     led_hardwired = True
     led_inverted = True
 elif agnostic.board == "pyboard":
-    default_pin = pyboard.X1
-    led_pin = adafruit_blinka.board.pyboard.LED_BLUE
+    default_pin = board.X1
+    led_pin = board.LED_BLUE
     led_hardwired = True
     led_inverted = False
+    uartTxId = "B6"
+    uartRXId = "B7"
 else:
     raise NotImplementedError("Board not supported")