1 from adafruit_blinka.microcontroller.generic_linux.periphery_pin import Pin
7 GPIO4 = Pin(4) #I2C SDA
8 GPIO5 = Pin(5) #I2C SCL
10 GPIO7 = Pin(7) #SPI SCLK
11 GPIO8 = Pin(8) #SPI MOSI
12 GPIO9 = Pin(9) #SPI MISO
55 # ordered as i2cId, sclId, sdaId
57 (0, I2C0_SCL, I2C0_SDA),
60 # ordered as spiId, sckId, mosiId, misoId
62 ((0, 1), SPI0_SCLK, SPI0_MOSI, SPI0_MISO),
65 # ordered as uartId, txId, rxId
67 (0, UART0_TX, UART0_RX),
68 (1, UART1_TX, UART1_RX),