Skip to content

Commit aa9d22d

Browse files
committed
fix(board): set SPI and I2C pin defs to -1
1 parent be38aa8 commit aa9d22d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: variants/alfredo-nou3/pins_arduino.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
//#define TX1 TX
1717
//#define RX1 RX
1818

19-
static const uint8_t SDA = 33;
20-
static const uint8_t SCL = 34;
19+
static const uint8_t SDA = -1;
20+
static const uint8_t SCL = -1;
2121

22-
static const uint8_t SS = 41;
23-
//static const uint8_t MOSI = 42;
24-
//static const uint8_t SCK = 10;
25-
//static const uint8_t MISO = 11;
22+
static const uint8_t SS = -1;
23+
static const uint8_t MOSI = -1;
24+
static const uint8_t SCK = -1;
25+
static const uint8_t MISO = -1;
2626

2727
#endif /* Pins_Arduino_h */

0 commit comments

Comments
 (0)