platformio / platform-ststm32

ST STM32: development platform for PlatformIO
https://registry.platformio.org/platforms/platformio/ststm32
Apache License 2.0
395 stars 308 forks source link

multiple definition of `premain()`, `main()` when using MySensors #283

Open pfeerick opened 5 years ago

pfeerick commented 5 years ago

When using the MySensors library, linking fails with...

.pio/build/genericSTM32F103CB/src/main.cpp.o: In function `premain()':
main.cpp:(.text.startup._Z7premainv+0x0): multiple definition of `premain()'
.pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup._Z7premainv+0x0): first defined here
.pio/build/genericSTM32F103CB/src/main.cpp.o: In function `main':
main.cpp:(.text.startup.main+0x0): multiple definition of `main'
.pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup.main+0x0): first defined here
collect2: error: ld returned 1 exit status

... most likely due to the library also having a premain() and main() in the hal folder. On the Arduino IDE, using the rogerclarkmelbourne/Arduino_STM32 core it works just fine.

But on PlatformIO, with

[env:genericSTM32F103CB]
platform = ststm32
framework = arduino
board = genericSTM32F103CB
board_build.core = maple
lib_deps = 
  548 ; MySensors

and the LightSensor example (picked as one of the shorter ones which should 'just compile/work' for any board) - with the requisite #include <Arduino.h> addition - it fails to build. Adding lib_archive = no does not make any noticeable difference. The same code will compile successfully for an atmelavr/uno target with PlatformIO, even though it appears the same form of collision should be happening there also.

Forum ref: https://community.platformio.org/t/how-to-eliminate-conflicting-symbols-arduinoststm32-maple-mysensors-lib/9509

Click to expand - Arduino IDE Compile verbose log ``` /usr/share/arduino/arduino-builder -dump-prefs -logger=machine -hardware /usr/share/arduino/hardware -hardware /home/pfeerick/.arduino15/packages -hardware /home/pfeerick/Arduino/hardware -tools /usr/share/arduino/tools-builder -tools /home/pfeerick/.arduino15/packages -libraries /home/pfeerick/Arduino/libraries -fqbn=Arduino_STM32:STM32F1:genericSTM32F103C:device_variant=STM32F103C8,upload_method=DFUUploadMethod,cpu_speed=speed_72mhz,opt=osstd -ide-version=10809 -build-path /tmp/arduino_build_191534 -warnings=none -build-cache /tmp/arduino_cache_557302 -prefs=build.warn_data_percentage=75 -verbose /tmp/arduino_modified_sketch_736219/BatteryPoweredSensor.ino /usr/share/arduino/arduino-builder -compile -logger=machine -hardware /usr/share/arduino/hardware -hardware /home/pfeerick/.arduino15/packages -hardware /home/pfeerick/Arduino/hardware -tools /usr/share/arduino/tools-builder -tools /home/pfeerick/.arduino15/packages -libraries /home/pfeerick/Arduino/libraries -fqbn=Arduino_STM32:STM32F1:genericSTM32F103C:device_variant=STM32F103C8,upload_method=DFUUploadMethod,cpu_speed=speed_72mhz,opt=osstd -ide-version=10809 -build-path /tmp/arduino_build_191534 -warnings=none -build-cache /tmp/arduino_cache_557302 -prefs=build.warn_data_percentage=75 -verbose /tmp/arduino_modified_sketch_736219/BatteryPoweredSensor.ino Using board 'genericSTM32F103C' from platform in folder: /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1 Using core 'maple' from platform in folder: /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1 Detecting libraries used... /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/libraries/MySensors/MyASM.S -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM/EEPROM.cpp -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM/flash_stm32.c -o /dev/null /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src/SPI.cpp -o /dev/null Generating function prototypes... /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -w -x c++ -E -CC -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp -o /tmp/arduino_build_191534/preproc/ctags_target_for_gcc_minus_e.cpp /usr/bin/arduino-ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /tmp/arduino_build_191534/preproc/ctags_target_for_gcc_minus_e.cpp Compiling sketch... /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp -o /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp.o Compiling libraries... Compiling library "MySensors" /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -x assembler-with-cpp -MMD -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/libraries/MySensors/MyASM.S -o /tmp/arduino_build_191534/libraries/MySensors/MyASM.S.o Compiling library "EEPROM" /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM/flash_stm32.c -o /tmp/arduino_build_191534/libraries/EEPROM/flash_stm32.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM/EEPROM.cpp -o /tmp/arduino_build_191534/libraries/EEPROM/EEPROM.cpp.o Compiling library "SPI" /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c -I/home/pfeerick/Arduino/libraries/MySensors -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI/src/SPI.cpp -o /tmp/arduino_build_191534/libraries/SPI/SPI.cpp.o Compiling core... /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -x assembler-with-cpp -MMD -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/wirish/start.S -o /tmp/arduino_build_191534/core/wirish/start.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/wirish/syscalls.c -o /tmp/arduino_build_191534/core/wirish/syscalls.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/wirish/start_c.c -o /tmp/arduino_build_191534/core/wirish/start_c.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/wirish/boards_setup.cpp -o /tmp/arduino_build_191534/core/wirish/boards_setup.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/wirish/boards.cpp -o /tmp/arduino_build_191534/core/wirish/boards.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/board.cpp -o /tmp/arduino_build_191534/core/board.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -x assembler-with-cpp -MMD -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/exc.S -o /tmp/arduino_build_191534/core/libmaple/exc.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -x assembler-with-cpp -MMD -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/stm32f1/performance/isrs.S -o /tmp/arduino_build_191534/core/libmaple/stm32f1/performance/isrs.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -x assembler-with-cpp -MMD -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/stm32f1/performance/vector_table.S -o /tmp/arduino_build_191534/core/libmaple/stm32f1/performance/vector_table.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/hooks.c -o /tmp/arduino_build_191534/core/hooks.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/spi.c -o /tmp/arduino_build_191534/core/libmaple/spi.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/rcc.c -o /tmp/arduino_build_191534/core/libmaple/rcc.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_mem.c -o /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_mem.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/timer.c -o /tmp/arduino_build_191534/core/libmaple/timer.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_init.c -o /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_init.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/dma.c -o /tmp/arduino_build_191534/core/libmaple/dma.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_regs.c -o /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_regs.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/itoa.c -o /tmp/arduino_build_191534/core/itoa.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/gpio_f1.c -o /tmp/arduino_build_191534/core/libmaple/gpio_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/exti.c -o /tmp/arduino_build_191534/core/libmaple/exti.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/avr/dtostrf.c -o /tmp/arduino_build_191534/core/avr/dtostrf.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/exti_f1.c -o /tmp/arduino_build_191534/core/libmaple/exti_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/i2c_f1.c -o /tmp/arduino_build_191534/core/libmaple/i2c_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/adc.c -o /tmp/arduino_build_191534/core/libmaple/adc.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/iwdg.c -o /tmp/arduino_build_191534/core/libmaple/iwdg.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/flash.c -o /tmp/arduino_build_191534/core/libmaple/flash.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/fsmc_f1.c -o /tmp/arduino_build_191534/core/libmaple/fsmc_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/adc_f1.c -o /tmp/arduino_build_191534/core/libmaple/adc_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/nvic.c -o /tmp/arduino_build_191534/core/libmaple/nvic.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usart_private.c -o /tmp/arduino_build_191534/core/libmaple/usart_private.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/dac.c -o /tmp/arduino_build_191534/core/libmaple/dac.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/bkp_f1.c -o /tmp/arduino_build_191534/core/libmaple/bkp_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/stm32f1/usb.c -o /tmp/arduino_build_191534/core/libmaple/usb/stm32f1/usb.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/systick.c -o /tmp/arduino_build_191534/core/libmaple/systick.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/gpio.c -o /tmp/arduino_build_191534/core/libmaple/gpio.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/stm32f1/usb_cdcacm.c -o /tmp/arduino_build_191534/core/libmaple/usb/stm32f1/usb_cdcacm.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/dma_f1.c -o /tmp/arduino_build_191534/core/libmaple/dma_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_core.c -o /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_core.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/timer_f1.c -o /tmp/arduino_build_191534/core/libmaple/timer_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/util.c -o /tmp/arduino_build_191534/core/libmaple/util.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usb/stm32f1/usb_reg_map.c -o /tmp/arduino_build_191534/core/libmaple/usb/stm32f1/usb_reg_map.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/rcc_f1.c -o /tmp/arduino_build_191534/core/libmaple/rcc_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/spi_f1.c -o /tmp/arduino_build_191534/core/libmaple/spi_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usart.c -o /tmp/arduino_build_191534/core/libmaple/usart.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/usart_f1.c -o /tmp/arduino_build_191534/core/libmaple/usart_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/pwr.c -o /tmp/arduino_build_191534/core/libmaple/pwr.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/stm32f1/util_hooks.c -o /tmp/arduino_build_191534/core/stm32f1/util_hooks.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gcc -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/libmaple/i2c.c -o /tmp/arduino_build_191534/core/libmaple/i2c.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/WString.cpp -o /tmp/arduino_build_191534/core/WString.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/Stream.cpp -o /tmp/arduino_build_191534/core/Stream.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/wirish_digital.cpp -o /tmp/arduino_build_191534/core/wirish_digital.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/HardwareTimer.cpp -o /tmp/arduino_build_191534/core/HardwareTimer.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/wirish_math.cpp -o /tmp/arduino_build_191534/core/wirish_math.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/HardwareSerial.cpp -o /tmp/arduino_build_191534/core/HardwareSerial.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/ext_interrupts.cpp -o /tmp/arduino_build_191534/core/ext_interrupts.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/wirish_time.cpp -o /tmp/arduino_build_191534/core/wirish_time.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/pwm.cpp -o /tmp/arduino_build_191534/core/pwm.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/usb_serial.cpp -o /tmp/arduino_build_191534/core/usb_serial.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/stm32f1/wiring_pulse_f1.cpp -o /tmp/arduino_build_191534/core/stm32f1/wiring_pulse_f1.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/stm32f1/wirish_debug.cpp -o /tmp/arduino_build_191534/core/stm32f1/wirish_debug.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/wirish_analog.cpp -o /tmp/arduino_build_191534/core/wirish_analog.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/Print.cpp -o /tmp/arduino_build_191534/core/Print.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/sdio.cpp -o /tmp/arduino_build_191534/core/sdio.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/tone.cpp -o /tmp/arduino_build_191534/core/tone.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/wirish_shift.cpp -o /tmp/arduino_build_191534/core/wirish_shift.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/cxxabi-compat.cpp -o /tmp/arduino_build_191534/core/cxxabi-compat.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/IPAddress.cpp -o /tmp/arduino_build_191534/core/IPAddress.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/new.cpp -o /tmp/arduino_build_191534/core/new.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/stm32f1/wirish_digital_f1.cpp -o /tmp/arduino_build_191534/core/stm32f1/wirish_digital_f1.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -c -g -Os -w -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++11 -MMD -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -DBOARD_generic_stm32f103c -DVECT_TAB_ADDR=0x8002000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -mcpu=cortex-m3 -DF_CPU=72000000L -DARDUINO=10809 -DARDUINO_GENERIC_STM32F103C -DARDUINO_ARCH_STM32F1 -DSERIAL_USB -DGENERIC_BOOTLOADER -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -DMCU_STM32F103C8 -mthumb -march=armv7-m -D__STM32F1__ -DARDUINO_ARCH_STM32 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple -I/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/cores/maple/main.cpp -o /tmp/arduino_build_191534/core/main.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/HardwareSerial.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/HardwareTimer.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/IPAddress.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/Print.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/Stream.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/WString.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/avr/dtostrf.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/cxxabi-compat.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/ext_interrupts.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/hooks.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/itoa.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/adc.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/adc_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/bkp_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/dac.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/dma.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/dma_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/exc.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/exti.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/exti_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/flash.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/fsmc_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/gpio.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/gpio_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/i2c.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/i2c_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/iwdg.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/nvic.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/pwr.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/rcc.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/rcc_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/spi.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/spi_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/stm32f1/performance/isrs.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/stm32f1/performance/vector_table.S.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/systick.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/timer.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/timer_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usart.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usart_f1.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usart_private.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/stm32f1/usb.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/stm32f1/usb_cdcacm.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/stm32f1/usb_reg_map.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_core.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_init.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_mem.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/usb/usb_lib/usb_regs.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/libmaple/util.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/main.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/new.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/pwm.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/sdio.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/stm32f1/util_hooks.c.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/stm32f1/wiring_pulse_f1.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/stm32f1/wirish_debug.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/stm32f1/wirish_digital_f1.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/tone.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/usb_serial.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/wirish_analog.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/wirish_digital.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/wirish_math.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/wirish_shift.cpp.o /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-ar rcs /tmp/arduino_build_191534/core/core.a /tmp/arduino_build_191534/core/wirish_time.cpp.o Archiving built core (caching) in: /tmp/arduino_cache_557302/core/core_58c583a5d3d773d2327b668eb3f10984.a Linking everything together... /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-g++ -Os -Wl,--gc-sections -mcpu=cortex-m3 -T/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/ld/bootloader_20.ld -Wl,-Map,/tmp/arduino_build_191534/BatteryPoweredSensor.ino.map -L/home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/variants/generic_stm32f103c/ld -o /tmp/arduino_build_191534/BatteryPoweredSensor.ino.elf -L/tmp/arduino_build_191534 -lm -lgcc -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group /tmp/arduino_build_191534/sketch/BatteryPoweredSensor.ino.cpp.o /tmp/arduino_build_191534/libraries/MySensors/MyASM.S.o /tmp/arduino_build_191534/libraries/EEPROM/EEPROM.cpp.o /tmp/arduino_build_191534/libraries/EEPROM/flash_stm32.c.o /tmp/arduino_build_191534/libraries/SPI/SPI.cpp.o /tmp/arduino_build_191534/core/board.cpp.o /tmp/arduino_build_191534/core/wirish/boards.cpp.o /tmp/arduino_build_191534/core/wirish/boards_setup.cpp.o /tmp/arduino_build_191534/core/wirish/start.S.o /tmp/arduino_build_191534/core/wirish/start_c.c.o /tmp/arduino_build_191534/core/wirish/syscalls.c.o /tmp/arduino_build_191534/core/core.a -Wl,--end-group /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-objcopy -O binary /tmp/arduino_build_191534/BatteryPoweredSensor.ino.elf /tmp/arduino_build_191534/BatteryPoweredSensor.ino.bin Using library MySensors at version 2.3.1 in folder: /home/pfeerick/Arduino/libraries/MySensors Using library EEPROM in folder: /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/EEPROM (legacy) Using library SPI at version 1.0 in folder: /home/pfeerick/Arduino/hardware/Arduino_STM32/STM32F1/libraries/SPI /home/pfeerick/.arduino15/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-size -A /tmp/arduino_build_191534/BatteryPoweredSensor.ino.elf Sketch uses 45728 bytes (69%) of program storage space. Maximum is 65536 bytes. Global variables use 4632 bytes (22%) of dynamic memory, leaving 15848 bytes for local variables. Maximum is 20480 bytes. ```
Click to expand - PlatformIO Verbose Build log ``` Processing genericSTM32F103CB (platform: ststm32; framework: arduino; board: genericSTM32F103CB; board_build.core: maple; lib_deps: 548) -------------------------------------------------------------------------------- CONFIGURATION: https://docs.platformio.org/page/boards/ststm32/genericSTM32F103CB.html PLATFORM: ST STM32 5.6.0 > STM32F103CB (20k RAM. 128k Flash) HARDWARE: STM32F103CBT6 72MHz, 20KB RAM, 128KB Flash DEBUG: Current (blackmagic) External (blackmagic, jlink, stlink) PACKAGES: toolchain-gccarmnoneeabi 1.70201.0 (7.2.1), framework-arduinoststm32-maple 1.10000.190819 (1.0.0) LDF: Library Dependency Finder -> http://bit.ly/configure-pio-ldf LDF Modes: Finder ~ chain, Compatibility ~ soft Found 33 compatible libraries Scanning dependencies... Dependency Graph |-- 2.3.1 (/home/pfeerick/Documents/PlatformIO/Projects/STM32/MySensors/.pio/libdeps/genericSTM32F103CB/MySensors_ID548) | |-- 1.0 (/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI) | |-- 1.0 (/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire) | |-- (/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM) arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/board.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/board.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/boards.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/wirish/boards.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/boards_setup.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/wirish/boards_setup.cpp arm-none-eabi-gcc -x assembler-with-cpp -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c -c -o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/start.S.o /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/wirish/start.S arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/start_c.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/wirish/start_c.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/syscalls.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/wirish/syscalls.c arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/HardwareSerial.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/HardwareSerial.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/HardwareTimer.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/HardwareTimer.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/IPAddress.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/IPAddress.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/Print.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/Print.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/Stream.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/Stream.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/WString.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/WString.cpp arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/avr/dtostrf.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/avr/dtostrf.c arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/cxxabi-compat.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/cxxabi-compat.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/ext_interrupts.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/ext_interrupts.cpp arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/hooks.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/hooks.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/itoa.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/itoa.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/adc.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/adc.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/adc_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/adc_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/bkp_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/bkp_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/dac.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/dac.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/dma.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/dma.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/dma_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/dma_f1.c arm-none-eabi-gcc -x assembler-with-cpp -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c -c -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/exc.S.o /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/exc.S arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/exti.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/exti.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/exti_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/exti_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/flash.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/flash.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/fsmc_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/fsmc_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/gpio.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/gpio.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/gpio_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/gpio_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/i2c.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/i2c.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/i2c_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/i2c_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/iwdg.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/iwdg.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/nvic.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/nvic.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/pwr.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/pwr.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/rcc.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/rcc.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/rcc_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/rcc_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/spi.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/spi.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/spi_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/spi_f1.c arm-none-eabi-gcc -x assembler-with-cpp -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c -c -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/stm32f1/performance/isrs.S.o /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/stm32f1/performance/isrs.S arm-none-eabi-gcc -x assembler-with-cpp -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c -c -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/stm32f1/performance/vector_table.S.o /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/stm32f1/performance/vector_table.S arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/systick.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/systick.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/timer.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/timer.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/timer_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/timer_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usart.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usart.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usart_f1.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usart_f1.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usart_private.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usart_private.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/stm32f1/usb.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/stm32f1/usb.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/stm32f1/usb_cdcacm.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/stm32f1/usb_cdcacm.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/stm32f1/usb_reg_map.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/stm32f1/usb_reg_map.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_core.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_core.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_init.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_init.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_mem.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_mem.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_regs.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/usb/usb_lib/usb_regs.c arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/util.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/libmaple/util.c arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/main.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/new.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/new.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/pwm.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/pwm.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/sdio.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/sdio.cpp arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/util_hooks.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/stm32f1/util_hooks.c arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/wiring_pulse_f1.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/stm32f1/wiring_pulse_f1.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/wirish_debug.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/stm32f1/wirish_debug.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/wirish_digital_f1.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/stm32f1/wirish_digital_f1.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/tone.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/tone.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/usb_serial.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/usb_serial.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_analog.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/wirish_analog.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_digital.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/wirish_digital.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_math.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/wirish_math.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_shift.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/wirish_shift.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_time.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple/wirish_time.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/src/main.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -Iinclude -Isrc -I.pio/libdeps/genericSTM32F103CB/MySensors_ID548 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/utility -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c src/main.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/lib52c/SPI/SPI.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/libcf8/Wire/SoftWire.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/utility -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/SoftWire.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/libcf8/Wire/Wire.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/utility -I/home/pfeerick/.platformio/packages/f/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp: In member function 'uint16_t SPIClass::transfer16(uint16_t) const': r/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp:383:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation] a while (spi_is_busy(spi_d) != 0); // wait until BSY=0 ^~~~~ me/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp:384:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while' w uint16_t ret = spi_rx_reg(spi_d)<<8; // read and shift high byte o ^~~~r~k~-~a~r d/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp:387:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation] u while (spi_is_busy(spi_d) != 0); // wait until BSY=0 i ^~~~n~o s/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp:388:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'while' t ret += spi_rx_reg(spi_d); // read low byte s ^~~ t/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp: In function 'spi_baud_rate determine_baud_rate(spi_dev*, uint32_t)': m/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.cpp:778:12: warning: enumeration value 'RCC_AHB' not handled in switch [-Wswitch] 3 switch (rcc_dev_clk(dev->clk_id)) 2 ^ -maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/Wire.cpp In file included from .pio/libdeps/genericSTM32F103CB/MySensors_ID548/hal/transport/RF24/driver/RF24.h:109:0, from .pio/libdeps/genericSTM32F103CB/MySensors_ID548/hal/transport/RF24/driver/RF24.cpp:23, from .pio/libdeps/genericSTM32F103CB/MySensors_ID548/MySensors.h:364, from src/main.cpp:38: /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.h:168:15: warning: '_spi2_this' defined but not used [-Wunused-variable] static void (*_spi2_this); ^~~~~~~~~~ /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.h:165:15: warning: '_spi1_this' defined but not used [-Wunused-variable] static void (*_spi1_this); ^~~~~~~~~~ /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src/SPI.h:163:16: warning: 'ff' defined but not used [-Wunused-variable] static uint8_t ff = 0XFF; ^~ arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/libcf8/Wire/utility/WireBase.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/utility -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/utility/WireBase.cpp arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/lib354/EEPROM/EEPROM.cpp.o -c -std=gnu++11 -fno-rtti -fno-exceptions -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM/EEPROM.cpp arm-none-eabi-ar rc .pio/build/genericSTM32F103CB/lib52c/libSPI.a .pio/build/genericSTM32F103CB/lib52c/SPI/SPI.cpp.o arm-none-eabi-ranlib .pio/build/genericSTM32F103CB/lib52c/libSPI.a arm-none-eabi-gcc -o .pio/build/genericSTM32F103CB/lib354/EEPROM/flash_stm32.c.o -c -std=gnu11 -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -Os -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c /home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM/flash_stm32.c arm-none-eabi-ar rc .pio/build/genericSTM32F103CB/libcf8/libWire.a .pio/build/genericSTM32F103CB/libcf8/Wire/SoftWire.cpp.o .pio/build/genericSTM32F103CB/libcf8/Wire/Wire.cpp.o .pio/build/genericSTM32F103CB/libcf8/Wire/utility/WireBase.cpp.o arm-none-eabi-ranlib .pio/build/genericSTM32F103CB/libcf8/libWire.a arm-none-eabi-gcc -x assembler-with-cpp -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -nostdlib -march=armv7-m --param max-inline-insns-single=500 -Wall -DPLATFORMIO=40100 -DSTM32F103xB -DSTM32F1 -DARDUINO=10808 -DARDUINO_ARCH_STM32 -DARDUINO_ARCH_STM32F1 -DARDUINO_GENERIC_STM32F103C -DMCU_STM32F103CB -D__STM32F1__ -DBOARD_generic_stm32f103c -DF_CPU=72000000L -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOC -DERROR_LED_PIN=13 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DSERIAL_USB -DGENERIC_BOOTLOADER -I.pio/libdeps/genericSTM32F103CB/MySensors_ID548 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/EEPROM -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/Wire/utility -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/libraries/SPI/src -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/cores/maple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/stm32f1/include -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/stm32f1 -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/system/libmaple/usb/usb_lib -I/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c -c -o .pio/build/genericSTM32F103CB/libc36/MySensors_ID548/MyASM.S.o .pio/libdeps/genericSTM32F103CB/MySensors_ID548/MyASM.S arm-none-eabi-ar rc .pio/build/genericSTM32F103CB/libc36/libMySensors_ID548.a .pio/build/genericSTM32F103CB/libc36/MySensors_ID548/MyASM.S.o arm-none-eabi-ranlib .pio/build/genericSTM32F103CB/libc36/libMySensors_ID548.a arm-none-eabi-ar rc .pio/build/genericSTM32F103CB/lib354/libEEPROM.a .pio/build/genericSTM32F103CB/lib354/EEPROM/EEPROM.cpp.o .pio/build/genericSTM32F103CB/lib354/EEPROM/flash_stm32.c.o arm-none-eabi-ranlib .pio/build/genericSTM32F103CB/lib354/libEEPROM.a arm-none-eabi-g++ -o .pio/build/genericSTM32F103CB/firmware.elf -T jtag.ld -Os -mthumb -mcpu=cortex-m3 -Wl,--check-sections -Wl,--gc-sections -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/board.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/boards.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/boards_setup.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/start.S.o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/start_c.c.o .pio/build/genericSTM32F103CB/FrameworkArduinoVariant/wirish/syscalls.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/HardwareSerial.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/HardwareTimer.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/IPAddress.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/Print.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/Stream.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/WString.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/avr/dtostrf.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/cxxabi-compat.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/ext_interrupts.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/hooks.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/itoa.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/adc.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/adc_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/bkp_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/dac.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/dma.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/dma_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/exc.S.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/exti.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/exti_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/flash.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/fsmc_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/gpio.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/gpio_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/i2c.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/i2c_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/iwdg.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/nvic.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/pwr.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/rcc.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/rcc_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/spi.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/spi_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/stm32f1/performance/isrs.S.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/stm32f1/performance/vector_table.S.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/systick.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/timer.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/timer_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usart.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usart_f1.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usart_private.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/stm32f1/usb.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/stm32f1/usb_cdcacm.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/stm32f1/usb_reg_map.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_core.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_init.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_mem.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/usb/usb_lib/usb_regs.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/libmaple/util.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/new.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/pwm.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/sdio.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/util_hooks.c.o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/wiring_pulse_f1.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/wirish_debug.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/stm32f1/wirish_digital_f1.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/tone.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/usb_serial.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_analog.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_digital.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_math.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_shift.cpp.o .pio/build/genericSTM32F103CB/FrameworkArduino/wirish_time.cpp.o .pio/build/genericSTM32F103CB/src/main.cpp.o -L/home/pfeerick/.platformio/platforms/ststm32/ldscripts -L.pio/build/genericSTM32F103CB -L/home/pfeerick/.platformio/packages/framework-arduinoststm32-maple/STM32F1/variants/generic_stm32f103c/ld -Wl,--start-group .pio/build/genericSTM32F103CB/lib52c/libSPI.a .pio/build/genericSTM32F103CB/libcf8/libWire.a .pio/build/genericSTM32F103CB/lib354/libEEPROM.a .pio/build/genericSTM32F103CB/libc36/libMySensors_ID548.a -lm -lgcc -Wl,--end-group .pio/build/genericSTM32F103CB/src/main.cpp.o: In function `premain()': main.cpp:(.text.startup._Z7premainv+0x0): multiple definition of `premain()' .pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup._Z7premainv+0x0): first defined here .pio/build/genericSTM32F103CB/src/main.cpp.o: In function `main': main.cpp:(.text.startup.main+0x0): multiple definition of `main' .pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup.main+0x0): first defined here .pio/build/genericSTM32F103CB/FrameworkArduino/main.cpp.o: In function `main': main.cpp:(.text.startup.main+0x2): warning: undefined reference to `setup()' collect2: error: ld returned 1 exit status *** [.pio/build/genericSTM32F103CB/firmware.elf] Error 1 ========================== [FAILED] Took 5.90 seconds ========================== Environment Status Duration ------------------ -------- ------------ genericSTM32F103CB FAILED 00:00:05.902 atmelavr IGNORED ==================== 1 failed, 0 succeeded in 00:00:05.902 ==================== ```
mtiutiu commented 5 years ago

@pfeerick One way to solve this using the advanced features of platformio is like this:

In platformio.ini in the env section of your project add this line: extra_scripts = pre:fix_main.py

Then create the fix_main.py file in the same directory as platformio.ini containing this:

Import("env")
import re
import os

STM32_FRAMEWORK_DIR = env['PROJECTPACKAGES_DIR'] + "/framework-arduinoststm32-maple"

def sed(file, pattern, replacement):
  with open(file, "r") as sources:
    lines = sources.readlines()
  with open(file, "w") as sources:
    for line in lines:
      sources.write(re.sub(pattern, replacement, line))

print("\n================================= STM32 FRAMEWORK PATCHER =================================\n")
if os.path.isdir(STM32_FRAMEWORK_DIR):
  for root, dirs, files in os.walk(STM32_FRAMEWORK_DIR):
    for file in files:
      if 'main.cpp' in file:
        main_cpp_file = os.path.join(root, file)
        print("[INFO] Patching file: {}".format(main_cpp_file))
        sed(main_cpp_file, '.*int main', '__attribute__ ((weak)) int main')
        sed(main_cpp_file, '.*void premain', '__attribute__(( constructor (101))) __attribute__ ((weak)) void premain') 
else:
  print("[WARN] Couldn't find stm32 framework directory! Searched for: {}".format(STM32_FRAMEWORK_DIR))
print("\n============================================================================================\n")

This doesn't solve the initial problem of course but until then it's just a quick workaround let's say. What it does in essence is before building the project it will search for all the main.cpp files in the arduino stm32 framework directory that platformio fetches and does a regex search and replace for lines that start with int main adding the __attribute__ ((weak)) in front. Same for void premain. Maybe the above can be done in a more elegant way but this is what I've come up so far and it seems to work. It also prints some information if it succeeded or not. Now this is not 100% foolproof as it relies on some predefined strings to search and replace which may change in the future.

Hope it helps for now.

pfeerick commented 5 years ago

Sounds nice! Thanks for that! :) Handy sed / match 'n replace function there too! :)

tilegg commented 4 years ago

For anyone struggling with the same issue: "PROJECTPACKAGES_DIR" was changed to "PROJECT_PACKAGES_DIR".

If you get "KeyError: 'PROJECTPACKAGES_DIR':" change the expression accordingly.

fpistm commented 4 years ago

This issue should be solved since the 1.8.0 release of the STM32 core as I've planned to support MySensors and I've met this issue so I've fix it.

tilegg commented 4 years ago

I'm using platformio 4.3.4 and ST STM32 8.0.0, hitting the following error (building MySensors for BlackPill):

Building in release mode
Linking .pio/build/genericSTM32F103C8/firmware.elf
/home/tiegs/.platformio/packages/toolchain-gccarmnoneeabi/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld: .pio/build/genericSTM32F103C8/src/main.cpp.o: in function `premain()':
main.cpp:(.text.startup._Z7premainv+0x0): multiple definition of `premain()'; .pio/build/genericSTM32F103C8/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup._Z7premainv+0x0): first defined here
/home/tiegs/.platformio/packages/toolchain-gccarmnoneeabi/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld: .pio/build/genericSTM32F103C8/src/main.cpp.o: in function `main':
main.cpp:(.text.startup.main+0x0): multiple definition of `main'; .pio/build/genericSTM32F103C8/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup.main+0x0): first defined here
collect2: error: ld returned 1 exit status
*** [.pio/build/genericSTM32F103C8/firmware.elf] Error 1

I'm a little confused by "1.8.0 relase". Does this refer to 8.0 or is there another libary involved?

fpistm commented 4 years ago

I'm talking about those version: https://github.com/stm32duino/Arduino_Core_STM32/releases

For PIO, V7.0.0 include the STM32 core version 1.9.0: https://github.com/platformio/platform-ststm32/tree/v7.0.0

So as I mentioned the MySensors library requires some update to handle properly this core like it has been done for Roger's core.

pfeerick commented 4 years ago

I'm a little confused by "1.8.0 relase".

Have a closer look at the build output - it will tell you up the top (1) the platformio package version and (2) the framework version. PlatformIO package 7.0.0 (not a typo, 8.0.0 is only a few days old) onwards has used arduinoSTM32 1.9.0.

image

@fpistm Not quite sure what you mean here ...

This issue should be solved since the 1.8.0 release of the STM32 core

... since the issue was related to the maple/rogerclark BSP/core. Do you mean you were hoping to get MySensors to add support for the STSTM32 BSP/core after changes made in 1.8.0? i.e. like seeing this PR merged?

fpistm commented 4 years ago

Oh sorry, my mistake I thought it was with STM32 core not Roger's. Maybe a regression. So, it seems strange it does not compile, last time I've tested it compile with Arduino. Did you test with Arduino ?

About the PR, I was not aware there is already one. That's fine as it seems what I've made allows to port properly the library. I will give a try.

tilegg commented 4 years ago

Thanks for the clarification. I'm using arduinoststm32 v 1.9.0

CONFIGURATION: https://docs.platformio.org/page/boards/ststm32/genericSTM32F103C8.html
PLATFORM: ST STM32 8.0.0 > STM32F103C8 (20k RAM. 64k Flash)
HARDWARE: STM32F103C8T6 72MHz, 20KB RAM, 64KB Flash
DEBUG: Current (blackmagic) External (blackmagic, jlink, stlink)
PACKAGES: 
 - framework-arduinoststm32 4.10900.200602 (1.9.0) 
 - framework-cmsis 2.50501.200527 (5.5.1) 
 - toolchain-gccarmnoneeabi 1.90201.191206 (9.2.1)

Building the PR mentioned above I still hit the "multiple definition of `main'" issue:

/home/teggers/.platformio/packages/toolchain-gccarmnoneeabi/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld: .pio/build/genericSTM32F103C8/src/main.cpp.o: in function `premain()':
main.cpp:(.text.startup._Z7premainv+0x0): multiple definition of `premain()'; .pio/build/genericSTM32F103C8/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup._Z7premainv+0x0): first defined here
/home/teggers/.platformio/packages/toolchain-gccarmnoneeabi/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld: .pio/build/genericSTM32F103C8/src/main.cpp.o: in function `main':
main.cpp:(.text.startup.main+0x0): multiple definition of `main'; .pio/build/genericSTM32F103C8/FrameworkArduino/main.cpp.o:main.cpp:(.text.startup.main+0x0): first defined here
collect2: error: ld returned 1 exit status
*** [.pio/build/genericSTM32F103C8/firmware.elf] Error 1

platformio.ini

[env:genericSTM32F103C8]
platform = ststm32
board = genericSTM32F103C8
;board_build.core = maple
framework = arduino

build_flags = -Os

lib_deps =
    Ethernet2@1.0.4
    ;MySensors@2.3.2
    ;https://github.com/mysensors/MySensors.git#development # 2.4 is WAY smaller than 2.3.2
    https://github.com/KooLru/MySensors.git#stm32_cores # MyS Branch for ststm32 build core (instead of maple)
pfeerick commented 4 years ago

Oh sorry, my mistake I thought it was with STM32 core not Roger's. Maybe a regression.

No problem ... to err is human and all that jazz ;)

So, it seems strange it does not compile, last time I've tested it compile with Arduino. Did you test with Arduino ?

When I initially had this issue, yes. As I said in the initial opening for the issue: "On the Arduino IDE, using the rogerclarkmelbourne/Arduino_STM32 core it works just fine." - hence the issue being lodged against PlatformIO since it's something PIO is doing differenet to the Arduino IDE, when using Rogers BSP. I haven't touched this since, so it's time for a revisit and poke and prod to see if anything has changes now that things have been updated a bit... :monocle_face: Plus I didn't know about the alternate 'STM32' BSP library forks, so that is a step forward! :smile_cat:

Gobol commented 3 years ago

Hard'n'dirty workaround for STM32F1 boards:

Force attribute((weak)) before framework-arduino preinit() and main() functions...

Change main.cpp in ~.platformio/packages/framework-arduinoststm32/cores/arduino with :

`/* main.cpp - Main loop for Arduino sketches Copyright (c) 2005-2013 Arduino Team. All right reserved.

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */

define ARDUINO_MAIN

include "Arduino.h"

// Force init to be called first, i.e. before static object allocation. // Otherwise, statically allocated objects that need HAL may fail. attribute((constructor(101))) attribute ((weak)) void premain() {

// Required by FreeRTOS, see http://www.freertos.org/RTOS-Cortex-M3-M4.html

ifdef NVIC_PRIORITYGROUP_4

HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);

endif

if (__CORTEX_M == 0x07U)

// Defined in CMSIS core_cm7.h

ifndef I_CACHE_DISABLED

SCB_EnableICache();

endif

ifndef D_CACHE_DISABLED

SCB_EnableDCache();

endif

endif

init(); }

/*

build-upload-log: Verbose mode can be enabled via-v, --verbose` option CONFIGURATION: https://docs.platformio.org/page/boards/ststm32/bluepill_f103c8.html PLATFORM: ST STM32 (8.1.0) > BluePill F103C8 HARDWARE: STM32F103C8T6 72MHz, 20KB RAM, 64KB Flash DEBUG: Current (stlink) External (blackmagic, jlink, stlink) PACKAGES:

platformio.ini:

`[env:bluepill_f103c8] ; extra_scripts = pre:fix_main.py platform = ststm32 board = bluepill_f103c8 ;board_build.core = maple framework = arduino

upload_protocol = stlink debug_port = stlink debug_tool = stlink monitor_port = /dev/cu.usbmodem14103 monitor_speed = 115200 monitor_filters = time, default

lib_deps = https://github.com/KooLru/MySensors.git#stm32_cores`