Unverified Commit 13664e77 authored by dlabun's avatar dlabun Committed by GitHub

Merge pull request #356 from henrygab/patch-1

Fix #355 - Wrong SPI pins defined
parents acd234f3 a299c1e1
......@@ -82,10 +82,10 @@ static const uint8_t AREF = PIN_AREF;
#define SPI_INTERFACES_COUNT 1
#define PIN_SPI_MISO (4)
#define PIN_SPI_MOSI (3)
#define PIN_SPI_SCK (5)
#define PIN_SPI_MOSI (5)
#define PIN_SPI_SCK (6)
#define PIN_SPI_SS (3)
static const uint8_t SS = PIN_SPI_SS ;
static const uint8_t MOSI = PIN_SPI_MOSI ;
static const uint8_t MISO = PIN_SPI_MISO ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment