ARCH_PRO: add SPI pin definitions

pull/9646/head
Maciej Bocianski 2019-01-21 15:43:05 +01:00 committed by adbridge
parent 5d819621e9
commit 56c0ece600
1 changed files with 6 additions and 0 deletions

View File

@ -109,6 +109,12 @@ typedef enum {
I2C_SCL = D15,
I2C_SDA = D14,
//SPI Pins configuration
SPI_MOSI = P0_9,
SPI_MISO = P0_8,
SPI_SCK = P0_7,
SPI_CS = P0_6,
// Not connected
NC = (int)0xFFFFFFFF
} PinName;