From 0f0505c9d32d7999f16756cc23ee231a515f9475 Mon Sep 17 00:00:00 2001 From: Midas Date: Tue, 16 Feb 2021 09:11:28 +0100 Subject: [PATCH 1/4] added arduino nano every config --- misc/default.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/misc/default.yml b/misc/default.yml index befbfa6f..793936e6 100644 --- a/misc/default.yml +++ b/misc/default.yml @@ -9,6 +9,8 @@ packages: url: https://downloads.arduino.cc/packages/package_index.json arduino:samd: url: https://downloads.arduino.cc/packages/package_index.json + arduino:megaavr: + url: https://downloads.arduino.cc/packages/package_index.json esp8266:esp8266: url: http://arduino.esp8266.com/stable/package_esp8266com_index.json adafruit:avr: @@ -57,6 +59,17 @@ platforms: - NUM_SERIAL_PORTS=2 warnings: flags: + nano_every: + board: arduino:megaavr:nona4809 + package: arduino:megaavr + gcc: + features: + defines: + - MILLIS_USE_TIMERB3 + - NO_EXTERNAL_I2C_PULLUP + - AVR_NANO_4809_328MODE + warnings: + flags: esp32: board: esp32:esp32:featheresp32:FlashFreq=80 package: esp32:esp32 @@ -181,6 +194,7 @@ compile: - esp32 - esp8266 - mega2560 + - nano_every unittest: compilers: From fde0e1db11601f7dd10707d213fd43f29d2a0bf1 Mon Sep 17 00:00:00 2001 From: Midas Date: Tue, 16 Feb 2021 09:25:04 +0100 Subject: [PATCH 2/4] fixed formatting error --- misc/default.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/misc/default.yml b/misc/default.yml index 793936e6..edfefd2a 100644 --- a/misc/default.yml +++ b/misc/default.yml @@ -60,16 +60,16 @@ platforms: warnings: flags: nano_every: - board: arduino:megaavr:nona4809 - package: arduino:megaavr - gcc: - features: - defines: - - MILLIS_USE_TIMERB3 - - NO_EXTERNAL_I2C_PULLUP - - AVR_NANO_4809_328MODE - warnings: - flags: + board: arduino:megaavr:nona4809 + package: arduino:megaavr + gcc: + features: + defines: + - MILLIS_USE_TIMERB3 + - NO_EXTERNAL_I2C_PULLUP + - AVR_NANO_4809_328MODE + warnings: + flags: esp32: board: esp32:esp32:featheresp32:FlashFreq=80 package: esp32:esp32 From 07087041b9df8f9282e3545b3bdc6d9a3869f981 Mon Sep 17 00:00:00 2001 From: Midas Date: Tue, 16 Feb 2021 09:31:15 +0100 Subject: [PATCH 3/4] Fixed default platforms to build to match unit test --- misc/default.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/misc/default.yml b/misc/default.yml index edfefd2a..9e49d95a 100644 --- a/misc/default.yml +++ b/misc/default.yml @@ -194,7 +194,6 @@ compile: - esp32 - esp8266 - mega2560 - - nano_every unittest: compilers: From ba7405ec76f92aae66aa9fa742132a54da49b674 Mon Sep 17 00:00:00 2001 From: Midas Date: Tue, 16 Feb 2021 15:20:00 +0100 Subject: [PATCH 4/4] added changelog message --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cac76ad..677e00a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added - +Added ```nano_every``` platform to represent ```arduino:megaavr``` architecture ### Changed ### Deprecated