diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 8bd5fae..4634273 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -75,6 +75,12 @@ jobs: platforms: | - name: esp32:esp32 source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json + - fqbn: arduino:renesas_portenta:portenta_c33 + platforms: | + - name: arduino:renesas_portenta + - fqbn: arduino:renesas_uno:minima + platforms: | + - name: arduino:renesas_uno steps: - name: Checkout diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..93c700e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode/ +.idea/ diff --git a/README.md b/README.md index 606509f..bdffd9c 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ This library works for * [ArduinoCore-samd](https://github.com/arduino/ArduinoCore-samd): [`Arduino Zero`](https://store.arduino.cc/arduino-zero), [`MKR 1000`](https://store.arduino.cc/arduino-mkr1000-wifi), [`MKR WiFi 1010`](https://store.arduino.cc/arduino-mkr-wifi-1010), [`Nano 33 IoT`](https://store.arduino.cc/arduino-nano-33-iot), [`MKR GSM 1400`](https://store.arduino.cc/arduino-mkr-gsm-1400-1415), [`MKR NB 1500`](https://store.arduino.cc/arduino-mkr-nb-1500-1413), [`MKR WAN 1300/1310`](https://store.arduino.cc/mkr-wan-1310) :heavy_check_mark: * [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: * [arduino-esp32](https://github.com/espressif/arduino-esp32): `ESP32 Dev Module`, `ESP32 Wrover Module`, ... :heavy_check_mark: +* [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: ## Example ```C++ diff --git a/library.properties b/library.properties index 9f6c1e9..85b9cbd 100644 --- a/library.properties +++ b/library.properties @@ -6,6 +6,6 @@ sentence=Arduino library for interfacing with the BMP388 barometric pressure sen paragraph= category=Sensors url=https://github.com/107-systems/107-Arduino-BMP388 -architectures=samd,esp32,mbed,mbed_nano,mbed_portenta,mbed_edge +architectures=samd,esp32,mbed,mbed_nano,mbed_portenta,mbed_edge,renesas_portenta,renesas_uno includes=107-Arduino-BMP388.h depends=107-Arduino-Sensor