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 a386620 commit fd1cf37Copy full SHA for fd1cf37
src/utility/Sd2PinMap.h
@@ -523,6 +523,22 @@ void fastDigitalWrite(uint8_t pin, uint8_t value) {
523
524
#endif // Arduino ARC
525
526
+//------------------------------------------------------------------------------
527
+#elif defined (__RISC_V__)
528
+
529
+#if defined (__ELBEAR_ACE_UNO__) // board for MIK32 АМУР from ELRON.TECH
530
531
+#include <Arduino.h>
532
533
+// SPI port
534
+uint8_t const SS_PIN = SS;
535
+uint8_t const MOSI_PIN = MOSI;
536
+uint8_t const MISO_PIN = MISO;
537
+uint8_t const SCK_PIN = SCK;
538
539
+#endif // ELBEAR ACE-UNO
540
541
542
#else
543
#error Architecture or board not supported.
544
#endif
0 commit comments