Issue moving sketch from Uno R3 to Teensy 3.2 - Modular synth clock, SM Tik-Tak

Status
Not open for further replies.

Oppfields

New member
Hi,

Can anyone spot why a Teensy 3.2 would be throwing up an error for this sketch?

Background:

I've successfully installed and built the project using an Uno and have it running on my bench. But when transferring the sketch to a Teensy 3.2 the sketch came up with the 'Multiple libraries were found for "SimpleTimer.h"' error. This has been tested on two computers and error is consistent. I've also tried reinstalling the Arduino IDE and Teensyduino and only have the single SimpleTimer library in my Libraries folder. But the error is still there.

To try and identify the issue I've broken down the sketch to find the offending block but haven't been able to pin it down. What I think is that the error relates to the line "timer.run();" in the loop, if I comment this out I can compile and upload to the Teensy.

As I say the sketch works on the Uno and I have the circuit running on my bench. But I would like to shrink the size of the Arduino and have a couple of Teensy 3.2 and one 3.6 but none will compile the code.

The original sketch from the Arduino Project Hub is included below and links so the source pages are listed after the code block.

Any thoughts or solutions appreciated.

Sketch (original, unchanged):

Code:
/*********************Programmed by SyntheMafia(06_06_2018)**********************/

#include <SimpleTimer.h>

SimpleTimer timer;
int count = 0;

void setup() {
  Serial.begin(9600);
  pinMode(2, OUTPUT);
  pinMode(3, OUTPUT);
  pinMode(4, OUTPUT);
  pinMode(5, OUTPUT);
  pinMode(10, INPUT);
}

bool started = false;
int priority = 0;
int tapX = 0;
int tapactual;
int tap_time;
int time_actual;
int input1X = 0;
float BPM; 
int max_BPM = 500; /* write hier the max BPM that you want */
int min_BPM = 60;  /* write hier the min BPM that you want */
int max_time = ((1/(min_BPM/60)) * 1000);
int min_time = ((1/(max_BPM/60)) * 1000);

void loop() {
  
  if (!started) {
    cycle_on();
    started = true;
  }
  
  timer.run();

  if (digitalRead(10) == HIGH && tapX ==0){
    tapX = millis ();
    while (digitalRead (10) == HIGH){
      delay(10);
    }
   }
   
  if (digitalRead (10) == HIGH && tapX !=0  ){
    tapactual = millis ();
    tap_time = (tapactual - tapX);
    if (tap_time > max_time){
      tap_time = max_time;  
    }
     if (tap_time < min_time){
      tap_time = min_time;  
    }
    tapX = tapactual;
    priority = 1; 
    while (digitalRead (10) == HIGH){
      delay(10);
    }
   }
   time_actual = millis ();
    if ((time_actual - tapX) > 4000){
      tapX = 0; 
    }
   
  Serial.print(" BPM: ");
  Serial.println(BPM);
  
}


/*********************************************************************/

void cycle_off() {
  digitalWrite(2, LOW);
  digitalWrite(3, LOW);
  digitalWrite(4, LOW);
  digitalWrite(5, LOW);

  count++;

  if (count == 8) {
    count = 0;
  }
}

/*********************************************************************/

void cycle_on() {

  switch (count) {
    case 0:
      digitalWrite(2, HIGH);
      digitalWrite(3, HIGH);
      digitalWrite(4, HIGH);
      digitalWrite(5, HIGH);
      break;

    case 1:
      digitalWrite(2, HIGH);
      break;

    case 2:
      digitalWrite(2, HIGH);
      digitalWrite(3, HIGH);
      break;

    case 3:
      digitalWrite(2, HIGH);
      break;
  
    case 4:
      digitalWrite(2, HIGH);
      digitalWrite(3, HIGH);
      digitalWrite(4, HIGH);
      break;

    case 5:
      digitalWrite(2, HIGH);
      break;

    case 6:
      digitalWrite(2, HIGH);
      digitalWrite(3, HIGH);
      break;

    case 7:
      digitalWrite(2, HIGH);
      break;
  }

  int input1 = analogRead(A0);
  int input2 = analogRead(A1);

  if (priority == 0){
     BPM = map(input1, 0, 1023, min_BPM, max_BPM);
  }
  
  if (priority == 1){
     BPM = (60000 / tap_time);
  }

  if (input1X - input1 > 5){
    priority = 0;
  }

  if (input1X - input1 < -5){
    priority = 0;
  }

  input1X = input1;
  
  float duration_percentage =  map(input2, 0, 1023, 1, 90);
 
  int cycletime = (60000/BPM);

  float cycle_start = cycletime;
  float cycle_stop = (cycletime * (duration_percentage/100));

  timer.setTimeout(cycle_start, cycle_on);
  timer.setTimeout(cycle_stop, cycle_off);

}

/*********************************************************************/

Error/warning message:

Code:
Arduino: 1.8.10 (Mac OS X), TD: 1.48, Board: "Teensy 3.2 / 3.1, Serial, 96 MHz (overclock), Faster, US English"

/Applications/Arduino.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Users/sumo/Library/Arduino15/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Users/sumo/Library/Arduino15/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/sumo/Documents/Arduino/libraries -fqbn=teensy:avr:teensy31:usb=serial,speed=96,opt=o2std,keys=en-us -ide-version=10810 -build-path /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611 -warnings=none -build-cache /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_cache_295416 -verbose /Users/sumo/Documents/Arduino/_sm_tik_tak__arduino_code/_sm_tik_tak__arduino_code.ino
/Applications/Arduino.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Users/sumo/Library/Arduino15/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Users/sumo/Library/Arduino15/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/sumo/Documents/Arduino/libraries -fqbn=teensy:avr:teensy31:usb=serial,speed=96,opt=o2std,keys=en-us -ide-version=10810 -build-path /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611 -warnings=none -build-cache /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_cache_295416 -verbose /Users/sumo/Documents/Arduino/_sm_tik_tak__arduino_code/_sm_tik_tak__arduino_code.ino
Using board 'teensy31' from platform in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr
Using core 'teensy3' from platform in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr
Detecting libraries used...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/sketch/_sm_tik_tak__arduino_code.ino.cpp -o /dev/null
Alternatives for SimpleTimer.h: [SimpleTimer]
ResolveLibrary(SimpleTimer.h)
  -> candidates: [SimpleTimer]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 -I/Users/sumo/Documents/Arduino/libraries/SimpleTimer /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/sketch/_sm_tik_tak__arduino_code.ino.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 -I/Users/sumo/Documents/Arduino/libraries/SimpleTimer /Users/sumo/Documents/Arduino/libraries/SimpleTimer/SimpleTimer.cpp -o /dev/null
Generating function prototypes...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 -I/Users/sumo/Documents/Arduino/libraries/SimpleTimer /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/sketch/_sm_tik_tak__arduino_code.ino.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/preproc/ctags_target_for_gcc_minus_e.cpp
/Applications/Arduino.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/preproc/ctags_target_for_gcc_minus_e.cpp
Compiling sketch...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/precompile_helper /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611 /Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -x c++-header -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch/Arduino.h -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch/Arduino.h.gch
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 -I/Users/sumo/Documents/Arduino/libraries/SimpleTimer /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/sketch/_sm_tik_tak__arduino_code.ino.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/sketch/_sm_tik_tak__arduino_code.ino.cpp.o
Compiling libraries...
Compiling library "SimpleTimer"
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 -I/Users/sumo/Documents/Arduino/libraries/SimpleTimer /Users/sumo/Documents/Arduino/libraries/SimpleTimer/SimpleTimer.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/libraries/SimpleTimer/SimpleTimer.cpp.o
Compiling core...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -x assembler-with-cpp -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/memcpy-armv7m.S -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/memcpy-armv7m.S.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -x assembler-with-cpp -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/memset.S -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/memset.S.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/keylayouts.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/keylayouts.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/analog.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/analog.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/ser_print.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/ser_print.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/math_helper.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/math_helper.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/eeprom.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/eeprom.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/pins_teensy.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/pins_teensy.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/mk20dx128.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/mk20dx128.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/nonstd.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/nonstd.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial1.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial1.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial2.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial2.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial3.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial3.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial4.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial4.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial5.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial5.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial6.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial6.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial6_lpuart.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial6_lpuart.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/touch.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/touch.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_desc.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_desc.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_dev.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_dev.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_joystick.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_joystick.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_keyboard.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_keyboard.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_mem.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_mem.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_midi.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_midi.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_mouse.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_mouse.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_mtp.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_mtp.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_rawhid.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_rawhid.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_seremu.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_seremu.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_serial.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_serial.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_touch.c -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_touch.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/AudioStream.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/AudioStream.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial5.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial5.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/EventResponder.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/EventResponder.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial1.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial1.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/DMAChannel.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/DMAChannel.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial3.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial3.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial2.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial2.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial4.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial4.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial6.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial6.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/IPAddress.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/IPAddress.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/IntervalTimer.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/IntervalTimer.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/Print.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/Print.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/Stream.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/Stream.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/Tone.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/Tone.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/WMath.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/WMath.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/WString.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/WString.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/avr_emulation.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/avr_emulation.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/main.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/main.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/new.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/new.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_audio.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_audio.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_flightsim.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_flightsim.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_inst.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_inst.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -fpermissive -felide-constructors -std=gnu++14 -Wno-error=narrowing -fno-rtti -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -D__MK20DX256__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=96000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3 /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/yield.cpp -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/yield.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/memcpy-armv7m.S.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/memset.S.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/analog.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/eeprom.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/keylayouts.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/math_helper.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/mk20dx128.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/nonstd.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/pins_teensy.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/ser_print.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial1.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial2.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial3.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial4.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial5.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial6.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/serial6_lpuart.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/touch.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_desc.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_dev.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_joystick.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_keyboard.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_mem.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_midi.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_mouse.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_mtp.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_rawhid.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_seremu.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_serial.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_touch.c.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/AudioStream.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/DMAChannel.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/EventResponder.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial1.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial2.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial3.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial4.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial5.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/HardwareSerial6.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/IPAddress.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/IntervalTimer.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/Print.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/Stream.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/Tone.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/WMath.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/WString.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/avr_emulation.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/main.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/new.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_audio.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_flightsim.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/usb_inst.cpp.o
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar rcs /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/yield.cpp.o
Archiving built core (caching) in: /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_cache_295416/core/core_teensy_avr_teensy31_usb_serial,speed_96,opt_o2std,keys_en-us_cee3a1d70ca5f7f18ab44a012a95ee10.a
Linking everything together...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -O2 -Wl,--gc-sections,--relax,--defsym=__rtc_localtime=1573638628 -T/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy3/mk20dx256.ld -lstdc++ -mthumb -mcpu=cortex-m4 -fsingle-precision-constant -o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/_sm_tik_tak__arduino_code.ino.elf /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/sketch/_sm_tik_tak__arduino_code.ino.cpp.o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/libraries/SimpleTimer/SimpleTimer.cpp.o /var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/core/core.a -L/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611 -larm_cortexM4l_math -lm
/var/folders/4j/z_6bp83j4ld54fhfh5kx789h0000gn/T/arduino_build_946611/libraries/SimpleTimer/SimpleTimer.cpp.o: In function `std::function<void ()>::operator()() const':
/Applications/Arduino.app/Contents/Java/hardware/tools/arm/arm-none-eabi/include/c++/5.4.1/functional:2266: undefined reference to `std::__throw_bad_function_call()'
collect2: error: ld returned 1 exit status
Multiple libraries were found for "SimpleTimer.h"
 Used: /Users/sumo/Documents/Arduino/libraries/SimpleTimer
Using library SimpleTimer in folder: /Users/sumo/Documents/Arduino/libraries/SimpleTimer (legacy)
Error compiling for board Teensy 3.2 / 3.1.

Links:

Sketch source: https://create.arduino.cc/projecthub/Synthemafia/modular-synth-clock-module-diy-arduino-sm-tik-tak-bd8ded

Library: https://github.com/schinken/SimpleTimer
 
Last edited:
It seems the verbose Error info is missing where the problem with the schinken/SimpleTimer library would be indicated is missing?
 
It compiles for me on T3.2 if I change timer_callback stuff in SimpleTimer.h to just

typedef void (*timer_callback)();

(e.g., get rid of std option)
 
It compiles for me on T3.2 if I change timer_callback stuff in SimpleTimer.h to just

typedef void (*timer_callback)();

(e.g., get rid of std option)

Hi manitou,

Yes, that worked on the T3.2 but breaks the library for the UNO. Good to know, now I can decide which way to go, T3.X or Arduino.

Thanks for helping :)
 
It should not be hard to make work for both.

My guess is you could just change the two #ifdef statements in the header file like from:
Code:
#ifndef __AVR__

to something like:
Code:
#if !DEFINED( __AVR__) || DEFINED(TEENSYDUINO)
Warning typed this in on the fly so could have issues...
 
Status
Not open for further replies.
Back
Top