From 654a669b5c24fa0dd7cdcfd11414a249fc06b672 Mon Sep 17 00:00:00 2001 From: ladyada Date: Wed, 12 Dec 2018 13:00:44 -0500 Subject: [PATCH] fix changed esp8266 menu options --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4ccbbc8..9e47a37 100644 --- a/install.sh +++ b/install.sh @@ -9,7 +9,7 @@ fi # associative array for the platforms that will be verified in build_main_platforms() # this will be eval'd in the functions below because arrays can't be exported # Uno is ATmega328, Zero is SAMD21G18, ESP8266, Leonardo is ATmega32u4, M4 is SAMD51, Mega is ATmega2560, ESP32 -export MAIN_PLATFORMS='declare -A main_platforms=( [uno]="arduino:avr:uno" [due]="arduino:sam:arduino_due_x" [zero]="arduino:samd:arduino_zero_native" [esp8266]="esp8266:esp8266:huzzah:FlashSize=4M3M,CpuFrequency=80" [leonardo]="arduino:avr:leonardo" [m4]="adafruit:samd:adafruit_metro_m4" [mega2560]="arduino:avr:mega:cpu=atmega2560" [esp32]="esp32:esp32:featheresp32:FlashFreq=80" )' +export MAIN_PLATFORMS='declare -A main_platforms=( [uno]="arduino:avr:uno" [due]="arduino:sam:arduino_due_x" [zero]="arduino:samd:arduino_zero_native" [esp8266]="esp8266:esp8266:huzzah:FlashSize=4M3M,xtal=80" [leonardo]="arduino:avr:leonardo" [m4]="adafruit:samd:adafruit_metro_m4" [mega2560]="arduino:avr:mega:cpu=atmega2560" [esp32]="esp32:esp32:featheresp32:FlashFreq=80" )' # associative array for other platforms that can be called explicitly in .travis.yml configs # this will be eval'd in the functions below because arrays can't be exported