Merge pull request #291 from JChristensen/dev

Compatibility with RP2350 when using RISC-V cores.
This commit is contained in:
Tyeth Gundry
2025-06-24 17:34:02 +01:00
committed by GitHub
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -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
View File
@@ -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 -->