Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit 520a73e

Browse files
authored
Add support for ArduinoCore-renesas. (#17)
1 parent e82970e commit 520a73e

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.github/workflows/compile-examples.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ jobs:
7878
platforms: |
7979
- name: rp2040:rp2040
8080
source-url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
81+
- fqbn: arduino:renesas_portenta:portenta_c33
82+
platforms: |
83+
- name: arduino:renesas_portenta
84+
- fqbn: arduino:renesas_uno:minima
85+
platforms: |
86+
- name: arduino:renesas_uno
8187
8288
steps:
8389
- name: Checkout

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
.vscode/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ This library works for
1919
* [ArduinoCore-mbed](https://github.com/arduino/ArduinoCore-mbed): [`Portenta H7`](https://store.arduino.cc/portenta-h7), [`Nano 33 BLE`](https://store.arduino.cc/arduino-nano-33-ble), [`Nano RP2040 Connect`](https://store.arduino.cc/nano-rp2040-connect), [`Edge Control`](https://store.arduino.cc/edge-control) :heavy_check_mark:
2020
* [arduino-esp32](https://github.com/espressif/arduino-esp32): `ESP32 Dev Module`, `ESP32 Wrover Module`, ... :heavy_check_mark:
2121
* [arduino-pico](https://github.com/earlephilhower/arduino-pico): [`Raspberry Pi Pico`](https://www.raspberrypi.org/products/raspberry-pi-pico), `Adafruit Feather RP2040`, ... :heavy_check_mark:
22+
* [ArduinoCore-renesas](https://github.com/arduino/ArduinoCore-renesas): [`Portenta C33`](https://store.arduino.cc/products/portenta-c33), [`Uno R4 WiFi`](https://store.arduino.cc/products/uno-r4-wifi), [`Uno R4 Minima`](https://store.arduino.cc/products/uno-r4-minima), ... :heavy_check_mark:
2223

2324
## Example
2425
```C++

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sentence=Arduino library for providing boost::units for the Arduino platform.
66
paragraph=
77
category=Other
88
url=https://github.com/107-systems/107-Arduino-BoostUnits
9-
architectures=samd,mbed,mbed_nano,mbed_portenta,mbed_edge,esp32,rp2040
9+
architectures=samd,mbed,mbed_nano,mbed_portenta,mbed_edge,esp32,rp2040,renesas_portenta,renesas_uno
1010
includes=107-Arduino-BoostUnits.h

0 commit comments

Comments
 (0)