MarlinFirmware / Marlin

Marlin is an optimized firmware for RepRap 3D printers based on the Arduino platform. Many commercial 3D printers come with Marlin installed. Check with your vendor if you need source code for your specific machine.
https://marlinfw.org
GNU General Public License v3.0
16.18k stars 19.21k forks source link

When i compile fresh git checkout with DEFAULT_MAX_ACCELERATION i get error: #7850

Closed Lostish closed 6 years ago

Lostish commented 6 years ago

Standard clone of a fresh new marlin on master. Cant get it compile with the standard values.

The error when compiling:

SanityCheck.h:1307:14: error: expected constructor, destructor, or type conversion before ‘(’ token
 static_assert(COUNT(sanity_arr_3) <= XYZE_N, "DEFAULT_MAX_ACCELERATION has too many elements.");
              ^

What can be done here?

jlucguillen commented 6 years ago

Hello there, I have the same issue trying to upload marlin in my Infitary M508 I replace the configuration.h and configuration_adv.h by the files from /example_configurations/infitary in Arduino IDE I set up with board : Arduino mega 2560 or Mega ADK port : /dev/ttyACMo ( i 'm using UBUNTU)

and the result is the same message I have seen than in the original firmware of the infitary there is this line #define DEFAULT_MAX_ACCELERATION {9000,9000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good and in the file form marlin #define DEFAULT_MAX_ACCELERATION { 3000, 3000, 100, 10000 }

please can you help ?

fiveangle commented 6 years ago

@Lostish - Works fine here (on bugfix1.1.x and 1.1.x - as you didn't provide what branch you are using or your configs, as there is no "master" branch):

build log ``` /Applications/Arduino 1.8.3-teensy.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino 1.8.3-teensy.app/Contents/Java/hardware -hardware /Users/speedster/Library/Arduino15/packages -hardware /Users/speedster/Documents/Arduino/hardware -tools /Applications/Arduino 1.8.3-teensy.app/Contents/Java/tools-builder -tools /Applications/Arduino 1.8.3-teensy.app/Contents/Java/hardware/tools/avr -tools /Users/speedster/Library/Arduino15/packages -built-in-libraries /Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries -libraries /Users/speedster/Documents/Arduino/libraries -fqbn=arduino:avr:mega:cpu=atmega2560 -ide-version=10803 -build-path /var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475 -warnings=default -build-cache /var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_cache_350800 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2 -prefs=runtime.tools.arduinoOTA.path=/Users/speedster/Library/Arduino15/packages/arduino/tools/arduinoOTA/1.1.1 -prefs=runtime.tools.avrdude.path=/Users/speedster/Library/Arduino15/packages/arduino/tools/avrdude/6.3.0-arduino9 -verbose /Users/speedster/dev/github/Marlin/Marlin/Marlin.ino /Applications/Arduino 1.8.3-teensy.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino 1.8.3-teensy.app/Contents/Java/hardware -hardware /Users/speedster/Library/Arduino15/packages -hardware /Users/speedster/Documents/Arduino/hardware -tools /Applications/Arduino 1.8.3-teensy.app/Contents/Java/tools-builder -tools /Applications/Arduino 1.8.3-teensy.app/Contents/Java/hardware/tools/avr -tools /Users/speedster/Library/Arduino15/packages -built-in-libraries /Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries -libraries /Users/speedster/Documents/Arduino/libraries -fqbn=arduino:avr:mega:cpu=atmega2560 -ide-version=10803 -build-path /var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475 -warnings=default -build-cache /var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_cache_350800 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2 -prefs=runtime.tools.arduinoOTA.path=/Users/speedster/Library/Arduino15/packages/arduino/tools/arduinoOTA/1.1.1 -prefs=runtime.tools.avrdude.path=/Users/speedster/Library/Arduino15/packages/arduino/tools/avrdude/6.3.0-arduino9 -verbose /Users/speedster/dev/github/Marlin/Marlin/Marlin.ino Using board 'mega' from platform in folder: /Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20 Using core 'arduino' from platform in folder: /Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20 Detecting libraries used... "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin.ino.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin.ino.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/G26_Mesh_Validation_Tool.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/I2CPositionEncoder.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/M100_Free_Mem_Chk.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/MarlinSerial.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin_main.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Max7219_Debug_LEDs.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Sd2Card.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdBaseFile.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFatUtil.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFile.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdVolume.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/blinkm.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/cardreader.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/configuration_store.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/dac_mcp4728.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4018.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4451.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/endstops.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/gcode.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/hex_print_routines.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/least_squares_fit.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/mesh_bed_leveling.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/nozzle.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/pca9632.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner_bezier.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/printcounter.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/serial.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/servo.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_dac.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_indirection.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stopwatch.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/temperature.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/twibus.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_G29.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_motion.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ultralcd.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/utility.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/vector_3.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/watchdog.cpp" -o "/dev/null" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src/LiquidCrystal.cpp" -o "/dev/null" Generating function prototypes... "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin.ino.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/preproc/ctags_target_for_gcc_minus_e.cpp" "/Applications/Arduino 1.8.3-teensy.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/preproc/ctags_target_for_gcc_minus_e.cpp" Compiling sketch... "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/G26_Mesh_Validation_Tool.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/G26_Mesh_Validation_Tool.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/I2CPositionEncoder.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/I2CPositionEncoder.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/M100_Free_Mem_Chk.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/M100_Free_Mem_Chk.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin.ino.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin.ino.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/MarlinSerial.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/MarlinSerial.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin_main.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin_main.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Max7219_Debug_LEDs.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Max7219_Debug_LEDs.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Sd2Card.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Sd2Card.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdBaseFile.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdBaseFile.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFatUtil.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFatUtil.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFile.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFile.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdVolume.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdVolume.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/blinkm.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/blinkm.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/cardreader.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/cardreader.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/configuration_store.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/configuration_store.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/dac_mcp4728.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/dac_mcp4728.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4018.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4018.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4451.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4451.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/endstops.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/endstops.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/gcode.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/gcode.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/hex_print_routines.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/hex_print_routines.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/least_squares_fit.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/least_squares_fit.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/mesh_bed_leveling.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/mesh_bed_leveling.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/nozzle.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/nozzle.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/pca9632.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/pca9632.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner_bezier.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner_bezier.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/printcounter.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/printcounter.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/serial.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/serial.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/servo.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/servo.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_dac.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_dac.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_indirection.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_indirection.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stopwatch.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stopwatch.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/temperature.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/temperature.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/twibus.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/twibus.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_G29.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_G29.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_motion.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_motion.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ultralcd.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ultralcd.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/utility.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/utility.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/vector_3.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/vector_3.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/watchdog.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/watchdog.cpp.o" Compiling libraries... Compiling library "LiquidCrystal" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "-I/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src" "/Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal/src/LiquidCrystal.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/libraries/LiquidCrystal/LiquidCrystal.cpp.o" Compiling core... "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -x assembler-with-cpp -flto -MMD -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/wiring_pulse.S" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_pulse.S.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/WInterrupts.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/WInterrupts.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/hooks.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/hooks.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/wiring.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/wiring_analog.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_analog.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/wiring_digital.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_digital.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/wiring_pulse.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_pulse.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -c -g -Os -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/wiring_shift.c" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_shift.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/CDC.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/CDC.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/HardwareSerial.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/HardwareSerial0.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial0.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/HardwareSerial1.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial1.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/HardwareSerial2.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial2.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/HardwareSerial3.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial3.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/IPAddress.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/IPAddress.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/PluggableUSB.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/PluggableUSB.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/Print.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/Print.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/Stream.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/Stream.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/Tone.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/Tone.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/USBCore.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/USBCore.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/WMath.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/WMath.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/WString.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/WString.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/abi.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/abi.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/main.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/main.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-g++" -c -g -Os -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10803 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino" "-I/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/variants/mega" "/Users/speedster/Library/Arduino15/packages/arduino/hardware/avr/1.6.20/cores/arduino/new.cpp" -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/new.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_pulse.S.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/WInterrupts.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/hooks.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_analog.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_digital.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_pulse.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/wiring_shift.c.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/CDC.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial0.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial1.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial2.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/HardwareSerial3.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/IPAddress.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/PluggableUSB.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/Print.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/Stream.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/Tone.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/USBCore.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/WMath.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/WString.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/abi.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/main.cpp.o" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc-ar" rcs "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/new.cpp.o" Archiving built core (caching) in: /var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_cache_350800/core/core_arduino_avr_mega_cpu_atmega2560_6aa6c3ef25e8ee1e6af5aeadcb8003f0.a Linking everything together... "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-gcc" -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections,--relax -mmcu=atmega2560 -o "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/Marlin.ino.elf" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/G26_Mesh_Validation_Tool.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/I2CPositionEncoder.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/M100_Free_Mem_Chk.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin.ino.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/MarlinSerial.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Marlin_main.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Max7219_Debug_LEDs.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/Sd2Card.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdBaseFile.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFatUtil.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdFile.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/SdVolume.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/blinkm.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/cardreader.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/configuration_store.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/dac_mcp4728.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4018.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/digipot_mcp4451.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/endstops.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/gcode.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/hex_print_routines.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/least_squares_fit.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/mesh_bed_leveling.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/nozzle.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/pca9632.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/planner_bezier.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/printcounter.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/serial.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/servo.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_dac.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stepper_indirection.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/stopwatch.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/temperature.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/twibus.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_G29.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ubl_motion.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/ultralcd.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/utility.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/vector_3.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/sketch/watchdog.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/libraries/LiquidCrystal/LiquidCrystal.cpp.o" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/core/core.a" "-L/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475" -lm "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/Marlin.ino.elf" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/Marlin.ino.eep" "/Users/speedster/Library/Arduino15/packages/arduino/tools/avr-gcc/4.9.2-atmel3.5.4-arduino2/bin/avr-objcopy" -O ihex -R .eeprom "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/Marlin.ino.elf" "/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/Marlin.ino.hex" Using library LiquidCrystal at version 1.0.5 in folder: /Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal Sketch uses 102214 bytes (40%) of program storage space. Maximum is 253952 bytes. Global variables use 4158 bytes (50%) of dynamic memory, leaving 4034 bytes for local variables. Maximum is 8192 bytes. ```
"/var/folders/q1/g9l9mqmn319fh27k43yqpy440000gr/T/arduino_build_610475/Marlin.ino.hex"
Using library LiquidCrystal at version 1.0.5 in folder: /Applications/Arduino 1.8.3-teensy.app/Contents/Java/libraries/LiquidCrystal 
Sketch uses 102214 bytes (40%) of program storage space. Maximum is 253952 bytes.
Global variables use 4158 bytes (50%) of dynamic memory, leaving 4034 bytes for local variables. Maximum is 8192 bytes.

@jlucguillen - above is bf1 and 1.1.5 with those example configs dropped in

jlucguillen commented 6 years ago

@Lostish - thx to read my post, I'm using the branch 1.1.x I'm french and I don't really understand the sentence "above is bf1 and 1.1.5 with those example configs dropped in" can you please tell me which informations you need and how can I get them (command line, file's path,...) then I'll post them here for you to read and lead me to the solution Thx a lot

fiveangle commented 6 years ago

That message was for @Lostish so it was not really intended for you.

Summary: I can not reproduce your problem with the limited information you provided. [Je ne peux pas reproduire votre problème avec les informations limitées que vous avez fournies.]

fiveangle commented 6 years ago

Configuration.h, Configuration_adv.h

Lostish commented 6 years ago

I have tried some things now. This error i get on linux. And i may miss libraries for the lcd that does it. Dont know if they are in linux by standard or not. As they are not in wondows. I assume they are not in linux either.

Running windows runs great. u8lib for lcd was required for compiling in windows. And windows works. So i need to recheck why its not working in linux.

So the problem in this case is Arduino IDE with linux

jlucguillen commented 6 years ago

@fiveangle Hello Thx a lot as the forum doesn't support .h extention, I add .txt extension to upload those files here Configuration.h.txt Configuration_adv.h.txt

those files are in Marlin-1.1.x\Marlin\example_configurations\Infitary\i3-M508

If you need other informations, please tell me

jlucguillen commented 6 years ago

@fiveangle , @Lostish thx a lot for your cooperation reading @Lostish last comment about the u8lib for LCD i have made some research and find this http://forums.reprap.org/read.php?110,554303 which is about this missing librarie creating issue with LCD screen and marlin firmware I have tested the Marlin-1.1.x\Marlin\ in the arduino IDE on my windows PC ( at hte office) ( including liquidChrystal librarie) and it's compiling well... So this evening( at home) I'll check on my linux if all the libraries are include, and I'll also try to compile with my windows PC and upload from windows to my print INFITARY

I will post the result of my tests here

jlucguillen commented 6 years ago

@fiveangle , @Lostish hi, From my PC windows arduino IDE 1.8.5 compilition has worked and i have been able to upload in my INFITARY.. yes !!! I don't know why it didn't work from ubuntu 16.04. perhaps I'll check it when i had more time ;) or if you asked me to do it... Now, for the screen my button is inverted : when I turn it to the right, on the the screen the cursor is going down when it should go up... but i really don't care ( I'm to happy to have marlin on my printer !! ) And I have an other question : on the screen the letters X, Y Z are blinkink and switching to "?" do you know why ? thx

fiveangle commented 6 years ago

Search your config files for "REVERSE"... to see where to change direction, either entire encoder, or only numerical values.

Close this issue if you're all good :+1:

-=dave

jlucguillen commented 6 years ago

@fiveangle OK I found it thx a lot

// This option reverses the encoder direction for navigating LCD menus. // // If CLOCKWISE normally moves DOWN this makes it go UP. // If CLOCKWISE normally moves UP this makes it go DOWN. // //#define REVERSE_MENU_DIRECTION

thx a lot... I ll do it later WE ARE ALL GOOD

jlucguillen commented 6 years ago

@Lostish Hi, for me it's OK thx a lot Close this issue if you're all good

didtoknan commented 6 years ago

I know it has been closed but it should not have been. It has not been really resolved. I have the same error when I compile on raspbian. On Windows I have no error. I really want to be able to compile with raspbian because my Pi is next to my printer (Octopi) and my desktop is not.

[edit]: I opened a new issue, I hope that's ok. https://github.com/MarlinFirmware/Marlin/issues/11236

github-actions[bot] commented 4 years ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.