Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
49d1112
update of https://github.com/SlashDevin/NeoHWSerial
gicking Nov 1, 2020
14c5dae
fixed index bug in storing data to ring buffer
gicking Oct 25, 2024
19b354d
Create compile_examples.yml
gicking Oct 29, 2024
3a39a0f
Update compile_examples.yml
gicking Oct 29, 2024
94675a9
Update compile_examples.yml
gicking Oct 29, 2024
c89cf9b
Update compile_examples.yml
gicking Oct 29, 2024
8011e56
Update compile_examples.yml
gicking Oct 29, 2024
2c72094
Update compile_examples.yml
gicking Oct 29, 2024
eeb3b22
Update compile_examples.yml
gicking Oct 29, 2024
f63e08e
Update compile_examples.yml
gicking Oct 29, 2024
c78e34a
Update compile_examples.yml
gicking Oct 29, 2024
3c351a7
Update compile_examples.yml
gicking Oct 29, 2024
01c93ce
Update compile_examples.yml
gicking Oct 29, 2024
5a2d8c0
Update compile_examples.yml
gicking Oct 29, 2024
38e3529
Update compile_examples.yml
gicking Oct 29, 2024
a5ba841
Update compile_examples.yml
gicking Oct 29, 2024
2fc2bfc
Update compile_examples.yml
gicking Oct 29, 2024
83c19c7
Update compile_examples.yml
gicking Oct 29, 2024
a69a157
Update compile_examples.yml
gicking Oct 29, 2024
d123ecd
Update compile_examples.yml
gicking Oct 29, 2024
eb8befa
Test CI
gicking Oct 29, 2024
bc519ba
xxx
gicking Oct 29, 2024
7c285e7
Merge branch 'master' of https://github.com/gicking/NeoHWSerial
gicking Oct 29, 2024
0ec3e90
test CI
gicking Oct 29, 2024
79068cc
Delete .github/workflows/compile_examples.yml
gicking Oct 29, 2024
5d0ef8a
moved inline ISRs to headers to avoid compiler warnings if not used
gicking Nov 3, 2024
f8e9488
Merge branch 'master' of https://github.com/gicking/NeoHWSerial
gicking Nov 3, 2024
046ed11
Create build_examples.yml
gicking Nov 3, 2024
c521cc4
updated example & CI script
gicking Nov 3, 2024
9f3f7bc
remove Nano
gicking Nov 3, 2024
1bd3015
fix LIN master example
gicking Dec 3, 2024
ec1ad67
reduced test frequency
gicking Dec 7, 2024
4fcd1d2
conditional compile for AVR architecture only
gicking Jan 26, 2025
87ff841
conditional compile for AVR architecture only
gicking Jan 26, 2025
9347985
added initial tag in revision history
gicking Jan 26, 2025
12fab92
updated Readme.md
gicking Jan 26, 2025
76a9643
fix bug that corrupts buffer storage if no user function is attached …
gicking Sep 13, 2025
12196cb
add methods to disable & enable receiver
gicking Sep 13, 2025
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
17 changes: 0 additions & 17 deletions .gitattributes

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/build_examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# based on https://github.com/arduino-libraries/ArduinoBLE/blob/master/.github/workflows/compile-examples.yml
name: Build Lib Examples

on:

# Trigger workflow on every push and pull request
push:
pull_request:

# Also run periodically to catch breakage caused by changes to external resources (libraries, platforms).
schedule:
# Minute, Hour, Day of Month, Month, Day of Week (UTC timezone)
#- cron: '20 21 */7 * *'
- cron: '0 3 2 * *'

jobs:

# Build for AVR
build-for-avr:
runs-on: ubuntu-latest
env:
SKETCHES_REPORTS_PATH: sketches-reports
strategy:
fail-fast: false
matrix:
board:
- fqbn: arduino:avr:mega # Arduino Mega2560
artifact-name-suffix: arduino_avr_mega
steps:
- uses: actions/[email protected] # check-out this repo
- uses: arduino/[email protected] # build Arduino examples
with:
github-token: ${{ secrets.GITHUB_TOKEN }} # required for private repos
fqbn: ${{ matrix.board.fqbn }}
libraries: |
- source-path: ./
sketch-paths: |
- examples
cli-compile-flags: |
- --warnings="all"
- uses: actions/[email protected] # upload test reports
with:
if-no-files-found: error
path: ${{ env.SKETCHES_REPORTS_PATH }}
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
3 changes: 3 additions & 0 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,6 @@ $RECYCLE.BIN/
Network Trash Folder
Temporary Items
.apdisk

# permit editing examples in Arduino IDE
.development
Loading