Skip to content

Commit 13265f3

Browse files
authored
89 adding boards (#1)
Squashed commit Setup for Travis-CI integration Tweaked misc/default.yml * Due now builds with defines for ATmega2560 as that is closer to the ATSAM3X8E (ATSAM3X8E causes Godmode tests to fail currently), was originally using ATmega328
1 parent 9342810 commit 13265f3

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ matrix:
1717
- os: osx
1818
env: BADGE=linux
1919

20-
#before_install: gem install bundler -v 1.15.4
20+
before_install:
21+
- gem install bundler -v 1.15.4
22+
- bundle _1.15.4_ install
2123
script:
2224
- g++ -v
25+
#- gem install bundle -v 1.15.4
26+
#- bundle _1.15_ install
2327
- bundle install
2428
- bundle exec rubocop --version
2529
- bundle exec rubocop -D .

misc/default.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ platforms:
4949
gcc:
5050
features:
5151
defines:
52-
- __ATSAM3X8E__
52+
# The due should use the ATSAM3X8E; however, that component does not seem
53+
# to be defined for the Godmode tests/components
54+
# The next closest part would be the AVR_ATmega2560 as both boards
55+
# use the mega form factor
56+
#- __ATSAM3X8E__
57+
- __AVR_ATmega2560__
58+
#- __AVR_ATmega328__
5359
warnings:
5460
flags:
5561
zero:

0 commit comments

Comments
 (0)