فهرست منبع

Merge pull request #291 from JChristensen/dev

Compatibility with RP2350 when using RISC-V cores.
Tyeth Gundry 6 ماه پیش
والد
کامیت
03c96dba96
2فایلهای تغییر یافته به همراه5 افزوده شده و 2 حذف شده
  1. 1 1
      Adafruit_SSD1306.cpp
  2. 4 1
      README.md

+ 1 - 1
Adafruit_SSD1306.cpp

@@ -50,7 +50,7 @@
 
 #if !defined(__ARM_ARCH) && !defined(ENERGIA) && !defined(ESP8266) &&          \
     !defined(ESP32) && !defined(__arc__) && !defined(__RL78__) &&              \
-    !defined(CH32V20x)
+    !defined(CH32V20x) && !defined(PICO_RISCV)
 #include <util/delay.h>
 #endif
 

+ 4 - 1
README.md

@@ -52,7 +52,9 @@ WICED       |      X     |            |          | No hardware SPI - bitbang onl
 ATtiny85    |            |      X     |          |
 Particle    |      X     |            |          |
 RTduino     |      X     |            |          |
-CH32 RISC-V |      X     |            |          | 
+CH32 RISC-V |      X     |            |          |
+RP2040      |      X     |            |          |
+RP2350      |      X     |            |          | ARM or RISC-V architecture 
 
   * ATmega328 : Arduino UNO, Adafruit Pro Trinket, Adafruit Metro 328, Adafruit Metro Mini
   * ATmega32u4 : Arduino Leonardo, Arduino Micro, Arduino Yun, Teensy 2.0, Adafruit Flora, Bluefruit Micro
@@ -64,5 +66,6 @@ CH32 RISC-V |      X     |            |          |
   * Particle: Particle Argon
   * RTduino : [RTduino](https://github.com/RTduino/RTduino) is the Arduino ecosystem compatibility layer for [RT-Thread RTOS](https://github.com/RT-Thread/rt-thread) BSPs
   * CH32 RISC-V: CH32V203
+  * RP2040, RP2350: Tested on Raspberry Pi Pico W/2W with [Arduino-Pico](https://github.com/earlephilhower/arduino-pico) core.
 
 <!-- END COMPATIBILITY TABLE -->