Skip to content

Commit db9f2b1

Browse files
facchinmpennam
authored andcommittedMar 1, 2023
giga: invert SPI and SPI1 objects
1 parent 3d5a895 commit db9f2b1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
 

‎variants/GIGA/pins_arduino.h

+9-9
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ static const uint8_t A13 = PIN_A13;
169169
#define D101 (101u)
170170

171171
// SPI
172-
#define PIN_SPI_MISO (12u)
173-
#define PIN_SPI_MOSI (11u)
174-
#define PIN_SPI_SCK (13u)
175-
#define PIN_SPI_SS (10u)
176-
177-
#define PIN_SPI_MISO1 (89u)
178-
#define PIN_SPI_MOSI1 (90u)
179-
#define PIN_SPI_SCK1 (91u)
180-
#define PIN_SPI_SS1 (92u)
172+
#define PIN_SPI_MISO (89u)
173+
#define PIN_SPI_MOSI (90u)
174+
#define PIN_SPI_SCK (91u)
175+
#define PIN_SPI_SS (92u)
176+
177+
#define PIN_SPI_MISO1 (12u)
178+
#define PIN_SPI_MOSI1 (11u)
179+
#define PIN_SPI_SCK1 (13u)
180+
#define PIN_SPI_SS1 (10u)
181181

182182
static const uint8_t SS = PIN_SPI_SS; // SPI Slave SS not used. Set here only for reference.
183183
static const uint8_t MOSI = PIN_SPI_MOSI;

0 commit comments

Comments
 (0)
Please sign in to comment.