Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 3 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,34 +54,18 @@ jobs:
run: |
echo EXTRA_ZEPHYR_MODULES="$(pwd)/$MODULE_PATH" >> $GITHUB_ENV

- name: Fetch the Arduino API
run: |
west blobs --auto-accept fetch arduino-api

- name: Apply Zephyr patches
run: |
bash $MODULE_PATH/extra/apply_zephyr_patches.sh

- name: Build PSE84 blinky
- name: Build blinky
run: |
west build -p -b kit_pse84_ai/pse846gps2dbzc4a/m33 $MODULE_PATH/samples/blinky_arduino

- name: Build PSE84 hello
- name: Build hello
run: |
west build -p -b kit_pse84_ai/pse846gps2dbzc4a/m33 $MODULE_PATH/samples/hello_arduino

- name: Build PSE84 threads
- name: Build threads
run: |
west build -p -b kit_pse84_ai/pse846gps2dbzc4a/m33 $MODULE_PATH/samples/threads_arduino

- name: Build fade
run: |
west build -p -b arduino_nano_33_ble//sense $MODULE_PATH/samples/fade

- name: Build i2cdemo
run: |
west build -p -b ek_ra8d1 $MODULE_PATH/samples/i2cdemo

- name: Build adc
run: |
west build -p -b arduino_nano_33_ble/nrf52840/sense $MODULE_PATH/samples/analog_input
418 changes: 401 additions & 17 deletions README.md

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions api_support_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
| `shiftOut()` | Digital GPIO | ⚠️ |
| **Time** | | |
| `delay()` | Timing | ✅ |
| `delayMicroseconds()` | Timing | ⚠️ |
| `delayMicroseconds()` | Timing | |
| `millis()` | Timing | ✅ |
| `micros()` | Timing | ✅ |
| **Math** | | |
Expand Down Expand Up @@ -63,23 +63,23 @@
| `isUpperCase()` | Characters | ⚠️ |
| `isWhitespace()` | Characters | ⚠️ |
| **Random Numbers** | | |
| `random()` | Random | ⚠️ |
| `randomSeed()` | Random | ⚠️ |
| `random()` | Random | |
| `randomSeed()` | Random | |
| **Bits and Bytes** | | |
| `bit()` | Bits & Bytes | ⚠️ |
| `bitClear()` | Bits & Bytes | ⚠️ |
| `bitRead()` | Bits & Bytes | ⚠️ |
| `bitSet()` | Bits & Bytes | ⚠️ |
| `bitWrite()` | Bits & Bytes | ⚠️ |
| `highByte()` | Bits & Bytes | ⚠️ |
| `lowByte()` | Bits & Bytes | ⚠️ |
| `bit()` | Bits & Bytes | |
| `bitClear()` | Bits & Bytes | |
| `bitRead()` | Bits & Bytes | |
| `bitSet()` | Bits & Bytes | |
| `bitWrite()` | Bits & Bytes | |
| `highByte()` | Bits & Bytes | |
| `lowByte()` | Bits & Bytes | |
| **External Interrupts** | | |
| `attachInterrupt()` | Interrupts | ✅ |
| `detachInterrupt()` | Interrupts | ✅ |
| `digitalPinToInterrupt()` | Interrupts | ✅ |
| **Interrupts** | | |
| `interrupts()` | Interrupts | ⚠️ |
| `noInterrupts()` | Interrupts | ⚠️ |
| `interrupts()` | Interrupts | |
| `noInterrupts()` | Interrupts | |
| **Stream** | | |
| `available()` | Serial / UART | ⚠️ |
| `read()` | Serial / UART | ⚠️ |
Expand All @@ -98,7 +98,7 @@
| `if(Serial)` | Serial / UART | ⚠️ |
| `Serial1` / `Serial2` | Serial / UART | ⚠️ |
| USB Serial | Serial / UART | ⚠️ |
| `Serial.available()` | Serial / UART | ⚠️ |
| `Serial.available()` | Serial / UART | |
| `Serial.availableForWrite()` | Serial / UART | ⚠️ |
| `Serial.begin()` | Serial / UART | ✅ |
| `Serial.end()` | Serial / UART | ⚠️ |
Expand All @@ -110,13 +110,13 @@
| `Serial.peek()` | Serial / UART | ⚠️ |
| `Serial.print()` | Serial / UART | ✅ |
| `Serial.println()` | Serial / UART | ✅ |
| `Serial.read()` | Serial / UART | ⚠️ |
| `Serial.read()` | Serial / UART | |
| `Serial.readBytes()` | Serial / UART | ⚠️ |
| `Serial.readBytesUntil()` | Serial / UART | ⚠️ |
| `Serial.readString()` | Serial / UART | ⚠️ |
| `Serial.readStringUntil()` | Serial / UART | ⚠️ |
| `Serial.setTimeout()` | Serial / UART | ⚠️ |
| `Serial.write()` | Serial / UART | ⚠️ |
| `Serial.write()` | Serial / UART | |
| `Serial.serialEvent()` | Serial / UART | ⚠️ |
| **SPI** | | |
| `SPI` | SPI | ❌ |
Expand Down
Loading
Loading