Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert project to an arduino project #3

Merged
merged 11 commits into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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
13 changes: 13 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
- push
- pull_request
jobs:
compile-sketch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
WillB97 marked this conversation as resolved.
Show resolved Hide resolved
- uses: arduino/compile-sketches@v1
with:
fqbn: "arduino:avr:uno"
sketch-paths: |
- src
WillB97 marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
*.hex
*.elf
serials.csv
.build_ano
lib
53 changes: 0 additions & 53 deletions Makefile

This file was deleted.

3 changes: 0 additions & 3 deletions build/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions commission.py

This file was deleted.

2 changes: 2 additions & 0 deletions src/ruggeduino.cpp → src/src.ino
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include <Arduino.h>

#define FW_VER 2

// NB: If you make any changes to this file, then the sample source for
// teams to extend in srweb (resources/kit/ruggeduino-fw.ino) will also
// need changing similarly (though there are some intentional differences)
Expand Down
56 changes: 0 additions & 56 deletions test_fw/Makefile

This file was deleted.

84 changes: 0 additions & 84 deletions test_fw/src/LED.cpp

This file was deleted.

51 changes: 0 additions & 51 deletions test_fw/src/LED.h

This file was deleted.

Loading
Loading