Open pfeerick opened 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.
Sounds nice! Thanks for that! :) Handy sed
/ match 'n replace function there too! :)
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.
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.
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?
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.
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.
@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?
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.
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)
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:
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 */
// 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
HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);
// Defined in CMSIS core_cm7.h
SCB_EnableICache();
SCB_EnableDCache();
init(); }
/*
\brief Main entry point of Arduino application */ attribute ((weak)) int main(void) { initVariant();
setup();
for (;;) {
CoreCallback();
loop(); serialEventRun(); }
return 0; } `
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`
When using the MySensors library, linking fails with...
... most likely due to the library also having a
premain()
andmain()
in the hal folder. On the Arduino IDE, using the rogerclarkmelbourne/Arduino_STM32 core it works just fine.But on PlatformIO, with
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. Addinglib_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 |--