From 0a6bed491f3c07407e570a9b423f3a979f9915d1 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Sat, 20 May 2017 08:11:06 -0700 Subject: atmel-samd: Enable autoreload by default again. --- atmel-samd/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atmel-samd/main.c b/atmel-samd/main.c index a1ccf0e3c..a45a59d1e 100644 --- a/atmel-samd/main.c +++ b/atmel-samd/main.c @@ -576,6 +576,9 @@ int main(void) { reset_samd21(); reset_mp(); + // Turn on autoreload by default but before boot.py in case it wants to change it. + autoreload_enable(); + // If not in safe mode, run boot before initing USB and capture output in a // file. if (safe_mode == NO_SAFE_MODE) { -- cgit v1.2.3 From eeced45bed8aa3da36fa7d62c2fa5915fa07dfb8 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Sun, 21 May 2017 07:53:19 -0700 Subject: Remove code size check. Its causing builds to fail because the new GCC made it slightly larger. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6400611dc..7f58adc8a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,7 +41,6 @@ script: - tools/build_adafruit_bins.sh - make -C minimal CROSS=1 build/firmware.bin - ls -l minimal/build/firmware.bin - - tools/check_code_size.sh - mkdir -p ${HOME}/persist # Save new firmware for reference, but only if building a main branch, not a pull request - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cp minimal/build/firmware.bin ${HOME}/persist/; fi' -- cgit v1.2.3