Skip to content

Commit

Permalink
Revert "Adds APA102 to CI"
Browse files Browse the repository at this point in the history
Unfortunately the "build.extra_flags" option doesn't include the USB flags specified in the boards.txt file, overwriting them instead which breaks compilation with the Leonardo. Reversing this until I can think of a better solution. This reverts commit bd8c3f6.
  • Loading branch information
dmadison committed Oct 18, 2018
1 parent bd8c3f6 commit f2a4031
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ env:
matrix:
include:
- name: "WS2812B"
env: BUILD_FLAGS="-DDEBUG_CI -DLED_CHIPSET=WS2812B"
- name: "APA102"
env: BUILD_FLAGS="-DDEBUG_CI -DLED_CHIPSET=APA102 -DPIN_CLOCK=7"

before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
Expand All @@ -27,7 +24,7 @@ before_install:
- CYAN="\033[36m"; YELLOW="\033[33m"; NOC="\033[0m";
- buildSketchPath() {
echo -e "\n${CYAN}Building sketch ${1##*/}${NOC}";
arduino --verify --board $BOARD --pref build.extra_flags="$BUILD_FLAGS" "$1";
arduino --verify --board $BOARD "$1";
}
- buildAllSketches() {
for f in $(find $PWD -name '*.ino');
Expand Down
5 changes: 0 additions & 5 deletions Arduino/LEDstream_FastLED/LEDstream_FastLED.ino
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,6 @@ static unsigned long
lastAckTime;

// Debug macros initialized
#ifdef DEBUG_CI
#undef LED_TYPE
#define LED_TYPE LED_CHIPSET // Use command line chipset definition
#endif

#ifdef DEBUG_LED
#define ON 1
#define OFF 0
Expand Down

0 comments on commit f2a4031

Please sign in to comment.