From 6c8e7fc860f1e1c6568637bd22fab1c47c49d9ea Mon Sep 17 00:00:00 2001 From: Vladimir Zahradnik Date: Thu, 13 Aug 2020 21:51:42 +0200 Subject: [PATCH] Disable M5stack on ESP32 by default --- .arduino-ci.yaml | 21 +++++++++++++++++++++ .travis.yml | 2 -- src/user_options.h | 4 ++-- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 .arduino-ci.yaml diff --git a/.arduino-ci.yaml b/.arduino-ci.yaml new file mode 100644 index 0000000..9ea921a --- /dev/null +++ b/.arduino-ci.yaml @@ -0,0 +1,21 @@ +compile: + libraries: ~ + platforms: + - uno + - due + - zero + - leonardo + - mega2560 + # - esp32 + # - esp8266 + +unittest: + libraries: ~ + platforms: + - uno + - due + - zero + - leonardo + - mega2560 + # - esp32 + # - esp8266 diff --git a/.travis.yml b/.travis.yml index 962a578..7405b4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,6 @@ git: branches: except: - gh-pages -before_install: - - sudo apt-get install -y doxygen graphviz script: - bundle install - bundle exec arduino_ci_remote.rb diff --git a/src/user_options.h b/src/user_options.h index 213d670..516974a 100644 --- a/src/user_options.h +++ b/src/user_options.h @@ -15,8 +15,8 @@ #define ENABLE_BUILT_IN_DRIVERS #define SM_MAX_BUSES 1 -// Uncomment to enable M5stack driver -#define M5STACK_RS485 +// Uncomment to enable M5stack driver (requires M5stack library) +// #define M5STACK_RS485 #else #define SM_MAX_BUSES 10 #endif