We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30eacd2 commit ebf7af4Copy full SHA for ebf7af4
variants/RASPBERRY_PI_PICO/pins_arduino.h
@@ -42,10 +42,21 @@ static const uint8_t A3 = PIN_A3;
42
#define PIN_SERIAL_RX (1ul)
43
44
// SPI
45
+#ifndef PIN_SPI_MISO
46
#define PIN_SPI_MISO (16u)
47
+#endif
48
+
49
+#ifndef PIN_SPI_MOSI
50
#define PIN_SPI_MOSI (19u)
51
52
53
+#ifndef PIN_SPI_SCK
54
#define PIN_SPI_SCK (18u)
55
56
57
+#ifndef PIN_SPI_SS
58
#define PIN_SPI_SS (17u)
59
60
61
static const uint8_t SS = PIN_SPI_SS; // SPI Slave SS not used. Set here only for reference.
62
static const uint8_t MOSI = PIN_SPI_MOSI;
0 commit comments