Skip to content

Commit 57a9f29

Browse files
James Fosterjgfoster
James Foster
andauthored
Suppress certain external library warnings (#114)
* Suppress warnings in external libraries. * Depends on Arduino-CI/arduino_ci#297. * Push trivial change to see if failing test in PR causes badge to update. Co-authored-by: James Foster <[email protected]>
1 parent adcdb97 commit 57a9f29

File tree

4 files changed

+41
-23
lines changed

4 files changed

+41
-23
lines changed

Diff for: .arduino-ci.yml

+38-22
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,41 @@
1+
platforms:
2+
mega2560:
3+
board: arduino:avr:mega:cpu=atmega2560
4+
package: arduino:avr
5+
gcc:
6+
features:
7+
defines:
8+
- __AVR__
9+
- __AVR_ATmega2560__
10+
- ARDUINO_ARCH_AVR
11+
- ARDUINO_AVR_MEGA2560
12+
warnings:
13+
- no-unknown-attributes
14+
- no-address-of-packed-member
15+
flags:
16+
117
unittest:
2-
platforms:
3-
- mega2560
4-
libraries:
5-
- "Adafruit BusIO"
6-
- "Adafruit MAX31865"
7-
- "Arduino-PID-Library"
8-
- "Ethernet"
9-
- "LiquidCrystal"
10-
- "RTClib"
11-
- "Keypad"
12-
- "SdFat"
18+
platforms:
19+
- mega2560
20+
libraries:
21+
- "Adafruit BusIO"
22+
- "Adafruit MAX31865"
23+
- "Arduino-PID-Library"
24+
- "Ethernet"
25+
- "LiquidCrystal"
26+
- "RTClib"
27+
- "Keypad"
28+
- "SdFat"
1329

1430
compile:
15-
platforms:
16-
- mega2560
17-
libraries:
18-
- "Adafruit BusIO"
19-
- "Adafruit MAX31865"
20-
- "Arduino-PID-Library"
21-
- "Ethernet"
22-
- "LiquidCrystal"
23-
- "RTClib"
24-
- "Keypad"
25-
- "SdFat"
31+
platforms:
32+
- mega2560
33+
libraries:
34+
- "Adafruit BusIO"
35+
- "Adafruit MAX31865"
36+
- "Arduino-PID-Library"
37+
- "Ethernet"
38+
- "LiquidCrystal"
39+
- "RTClib"
40+
- "Keypad"
41+
- "SdFat"

Diff for: .github/actions/spelling/excludes.txt

+1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ LICENSE
1212
.all-contributorsrc
1313
.gitignore
1414
Makefile
15+
.arduino-ci.yml
1516
^other/*
1617
^docs/Menus.xlsx$

Diff for: .github/actions/spelling/expect.txt

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Flawfinder
4545
FONTFAMILY
4646
FONTSTYLE
4747
FONTWEIGHT
48+
gcc
4849
Gemfile
4950
getcwd
5051
github

Diff for: GUI/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TankControllerGUI
2-
A Python GUI for TankController running on the mocks provided by `Arduino CI`
2+
A Python GUI for TankController running on the mocks provided by `Arduino CI`.
33

44
## Build Process
55
Follow these steps

0 commit comments

Comments
 (0)