-# # ordered as spiId, sckId, mosiId, misoId
-# spiPorts = (
-#     (0, SCLK, MOSI, MISO),
-#     (1, SCLK_1, MOSI_1, MISO_1)
-# )
-#
-# # ordered as uartId, txId, rxId
-# uartPorts = (
-#     (),
-# )
-#
-# i2cPorts = (
-#     (2, SCL, SDA),
-# )
+# ordered as spiId, sckId, mosiId, misoId
+spiPorts = (
+    # (0, Pin('SPI0_SCLK'), Pin('SPI0_D1'), Pin('SPI0_D0')),
+    # (1, Pin('SPI1_SCLK'), Pin('SPI1_D1'), Pin('SPI1_D0')),
+    (1, P1_8, P1_12, P1_10),
+    (1, P2_29, P2_25, P2_27),
+)
+
+# ordered as uartId, txId, rxId
+uartPorts = (
+    # (0, Pin('UART0_TXD'), Pin('UART0_RXD')),
+    # (1, Pin('UART1_TXD'), Pin('UART1_RXD')),
+    # (2, Pin('UART2_TXD'), Pin('UART2_RXD')),
+    # (4, Pin('UART4_TXD'), Pin('UART4_RXD')),
+    # (5, Pin('UART5_TXD'), Pin('UART5_RXD')),
+)
+
+# ordered as i2cId, SCL, SDA
+i2cPorts = (
+    # (1, Pin('I2C1_SCL'), Pin('I2C1_SDA')),
+    # (2, Pin('I2C2_SCL'), Pin('I2C2_SDA')),
+    (1, P2_9, P2_11),
+    (2, P1_28, P1_26),
+)