Skip to content

Fine-tune ESP32 serial buffer and ACK sizes for better reliability #30

Fine-tune ESP32 serial buffer and ACK sizes for better reliability

Fine-tune ESP32 serial buffer and ACK sizes for better reliability #30

Workflow file for this run

name: Build / SAM3X
on:
workflow_dispatch:
pull_request:
paths:
- 'src/**'
- '.github/workflows/build_sam3x.yml'
push:
paths:
- 'src/**'
- '.github/workflows/build_sam3x.yml'
jobs:
sam3x-due:
name: sam3x ${{ matrix.sketches.name }}
runs-on: ubuntu-latest
strategy:
matrix:
sketches:
- name: serial
- name: ethernet
- name: wifi
board:
- fqbn: arduino:sam:arduino_due_x
denko-target: sam3x
platforms: |
- name: arduino:sam
libraries: |
- name: Servo
- name: Ethernet
- name: WiFi
- name: Adafruit NeoPixel
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Generate
id: generate
run: echo "path=$(./bin/denko sketch ${{ matrix.sketches.name }} --target ${{ matrix.board.denko-target }})" >> $GITHUB_OUTPUT
- name: Compile Arduino Sketches
uses: arduino/[email protected]
with:
platforms: ${{ matrix.board.platforms }}
fqbn: ${{ matrix.board.fqbn }}
libraries: ${{ matrix.board.libraries }}
sketch-paths: |
- ${{ steps.generate.outputs.path }}