Skip to content

Commit

Permalink
DISCO_F429ZI : add SPI_6 define to UBLOX_C029
Browse files Browse the repository at this point in the history
Since DISCO_F429ZI uses 6 SPIs (#1 and #3), spi_api was modified to
support it.
This modification needs to be reported in UBLOX_C029, as it is based on
stm32f439, that contains SPI6 define
  • Loading branch information
adustm committed Nov 9, 2015
1 parent d6ac3b2 commit 5840352
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ typedef enum {
SPI_2 = (int)SPI2_BASE,
SPI_3 = (int)SPI3_BASE,
SPI_4 = (int)SPI4_BASE,
SPI_5 = (int)SPI5_BASE
SPI_5 = (int)SPI5_BASE,
SPI_6 = (int)SPI6_BASE
} SPIName;

typedef enum {
Expand Down

0 comments on commit 5840352

Please sign in to comment.