Skip to content

Commit 13664e7

Browse files
authored
Merge pull request #356 from henrygab/patch-1
Fix #355 - Wrong SPI pins defined
2 parents acd234f + a299c1e commit 13664e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variants/hackaBLE/variant.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ static const uint8_t AREF = PIN_AREF;
8282
#define SPI_INTERFACES_COUNT 1
8383

8484
#define PIN_SPI_MISO (4)
85-
#define PIN_SPI_MOSI (3)
86-
#define PIN_SPI_SCK (5)
85+
#define PIN_SPI_MOSI (5)
86+
#define PIN_SPI_SCK (6)
8787
#define PIN_SPI_SS (3)
88-
88+
8989
static const uint8_t SS = PIN_SPI_SS ;
9090
static const uint8_t MOSI = PIN_SPI_MOSI ;
9191
static const uint8_t MISO = PIN_SPI_MISO ;

0 commit comments

Comments
 (0)