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 72f666d commit 455519cCopy full SHA for 455519c
src/utility/Sd2PinMap.h
@@ -31,6 +31,20 @@ uint8_t const SCK_PIN = SCK;
31
32
#endif // Sd2PinMap_h
33
34
+#elif defined(__AVR_ATmega4809__) // Arduino UNO WiFI Rev2 follows
35
+
36
+#ifndef Sd2PinMap_h
37
+#define Sd2PinMap_h
38
39
+#include <Arduino.h>
40
41
+uint8_t const SS_PIN = SS;
42
+uint8_t const MOSI_PIN = MOSI;
43
+uint8_t const MISO_PIN = MISO;
44
+uint8_t const SCK_PIN = SCK;
45
46
+#endif // Sd2PinMap_h
47
48
#elif defined(__AVR__) // Other AVR based Boards follows
49
50
// Warning this file was generated by a program.
0 commit comments