mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #9482 from maciejbocianski/arch_pro_spi_pins
ARCH_PRO: add missing SPI pin definitionspull/9526/head
commit
953acef94c
|
@ -109,6 +109,12 @@ typedef enum {
|
||||||
I2C_SCL = D15,
|
I2C_SCL = D15,
|
||||||
I2C_SDA = D14,
|
I2C_SDA = D14,
|
||||||
|
|
||||||
|
//SPI Pins configuration
|
||||||
|
SPI_MOSI = P0_9,
|
||||||
|
SPI_MISO = P0_8,
|
||||||
|
SPI_SCK = P0_7,
|
||||||
|
SPI_CS = P0_6,
|
||||||
|
|
||||||
// Not connected
|
// Not connected
|
||||||
NC = (int)0xFFFFFFFF
|
NC = (int)0xFFFFFFFF
|
||||||
} PinName;
|
} PinName;
|
||||||
|
|
Loading…
Reference in New Issue