From 1daabba5c116eb664829bc9265882d1884c6a4c5 Mon Sep 17 00:00:00 2001 From: peabody124 Date: Mon, 24 Jan 2011 20:01:06 +0000 Subject: [PATCH] Build: Change the lower makefiles to use forward slashes but also create directories on windows git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2585 ebee16cc-31ac-478f-84a7-5cbb03baadba --- flight/AHRS/Makefile | 9 +- flight/CopterControl/Makefile | 10 +- flight/OpenPilot/Makefile | 10 +- flight/PipXtreme/Makefile | 10 +- .../OpenPilotOSX.xcodeproj/project.pbxproj | 791 ++++++++++++++++++ 5 files changed, 810 insertions(+), 20 deletions(-) diff --git a/flight/AHRS/Makefile b/flight/AHRS/Makefile index be6952820..a543dc7fb 100644 --- a/flight/AHRS/Makefile +++ b/flight/AHRS/Makefile @@ -60,7 +60,7 @@ else BOOT_MODEL = $(MODEL)_NB endif # Directory for output files (lst, obj, dep, elf, sym, map, hex, bin etc.) -OUTDIR = ..\..\build\ahrs +OUTDIR = ../../build/ahrs # Target file name (without extension). TARGET = AHRS @@ -590,20 +590,19 @@ clean_list : # Create output files directory # all known MS Windows OS define the ComSpec environment variable ifdef ComSpec -$(shell md $(OUTDIR) 2>NUL) +$(shell md $(subst /,\\,$(OUTDIR)) 2>NUL) else -$(shell mkdir $(OUTDIR) 2>/dev/null) +$(shell mkdir -p $(OUTDIR) 2>/dev/null) endif # Include the dependency files. ifdef ComSpec --include $(shell md $(OUTDIR)\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) +-include $(shell md $(subst /,\\,$(OUTDIR))\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) else -include $(shell mkdir $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) endif - # Listing of phony targets. .PHONY : all begin finish end sizebefore sizeafter gccversion \ build elf hex bin lss sym clean clean_list program diff --git a/flight/CopterControl/Makefile b/flight/CopterControl/Makefile index defd33769..3b6e14634 100644 --- a/flight/CopterControl/Makefile +++ b/flight/CopterControl/Makefile @@ -82,7 +82,7 @@ BOOT_MODEL = $(MODEL)_NB endif # Directory for output files (lst, obj, dep, elf, sym, map, hex, bin etc.) -OUTDIR = ..\..\build\coptercontrol +OUTDIR = ../../build/coptercontrol # Target file name (without extension). TARGET = CopterControl @@ -801,16 +801,16 @@ clean_list : # Create output files directory # all known MS Windows OS define the ComSpec environment variable ifdef ComSpec -$(shell md $(OUTDIR) 2>NUL) +$(shell md $(subst /,\\,$(OUTDIR)) 2>NUL) else -$(shell mkdir $(OUTDIR) 2>/dev/null) +$(shell mkdir -p $(OUTDIR) 2>/dev/null) endif # Include the dependency files. ifdef ComSpec --include $(shell md $(OUTDIR)\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) +-include $(shell md $(subst /,\\,$(OUTDIR))\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) else --include $(shell mkdir $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) +-include $(shell mkdir -p $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) endif diff --git a/flight/OpenPilot/Makefile b/flight/OpenPilot/Makefile index b5f080b56..803bcf995 100644 --- a/flight/OpenPilot/Makefile +++ b/flight/OpenPilot/Makefile @@ -81,7 +81,7 @@ BOOT_MODEL = $(MODEL)_NB endif # Directory for output files (lst, obj, dep, elf, sym, map, hex, bin etc.) -OUTDIR = ..\..\build\openpilot +OUTDIR = ../../build/openpilot # Target file name (without extension). TARGET = OpenPilot @@ -810,16 +810,16 @@ clean_list : # Create output files directory # all known MS Windows OS define the ComSpec environment variable ifdef ComSpec -$(shell md $(OUTDIR) 2>NUL) +$(shell md $(subst /,\\,$(OUTDIR)) 2>NUL) else -$(shell mkdir $(OUTDIR) 2>/dev/null) +$(shell mkdir -p $(OUTDIR) 2>/dev/null) endif # Include the dependency files. ifdef ComSpec --include $(shell md $(OUTDIR)\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) +-include $(shell md $(subst /,\\,$(OUTDIR))\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) else --include $(shell mkdir $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) +-include $(shell mkdir -p $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) endif diff --git a/flight/PipXtreme/Makefile b/flight/PipXtreme/Makefile index cac60b126..a134c51e1 100644 --- a/flight/PipXtreme/Makefile +++ b/flight/PipXtreme/Makefile @@ -72,7 +72,7 @@ BOOT_MODEL = $(MODEL)_NB endif # Directory for output files (lst, obj, dep, elf, sym, map, hex, bin etc.) -OUTDIR = ..\..\build\flight\pipxtreme +OUTDIR = ../../build/flight/pipxtreme # Target file name (without extension). TARGET = PipXtreme @@ -637,16 +637,16 @@ clean_list : # Create output files directory # all known MS Windows OS define the ComSpec environment variable ifdef ComSpec -$(shell md $(OUTDIR) 2>NUL) +$(shell md $(subst /,\\,$(OUTDIR)) 2>NUL) else -$(shell mkdir $(OUTDIR) 2>/dev/null) +$(shell mkdir -p $(OUTDIR) 2>/dev/null) endif # Include the dependency files. ifdef ComSpec --include $(shell md $(OUTDIR)\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) +-include $(shell md $(subst /,\\,$(OUTDIR))\dep 2>NUL) $(wildcard $(OUTDIR)/dep/*) else --include $(shell mkdir $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) +-include $(shell mkdir -p $(OUTDIR) 2>/dev/null) $(shell mkdir $(OUTDIR)/dep 2>/dev/null) $(wildcard $(OUTDIR)/dep/*) endif diff --git a/flight/Project/OpenPilotOSX/OpenPilotOSX.xcodeproj/project.pbxproj b/flight/Project/OpenPilotOSX/OpenPilotOSX.xcodeproj/project.pbxproj index a059ef2c1..07dd63abf 100644 --- a/flight/Project/OpenPilotOSX/OpenPilotOSX.xcodeproj/project.pbxproj +++ b/flight/Project/OpenPilotOSX/OpenPilotOSX.xcodeproj/project.pbxproj @@ -2955,6 +2955,377 @@ 65E8F0EE11EFF25C00BBF654 /* startup_stm32f10x_HD.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = startup_stm32f10x_HD.S; path = ../../PiOS/STM32F10x/startup_stm32f10x_HD.S; sourceTree = SOURCE_ROOT; }; 65E8F0F111EFF25C00BBF654 /* startup_stm32f10x_MD.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = startup_stm32f10x_MD.S; path = ../../PiOS/STM32F10x/startup_stm32f10x_MD.S; sourceTree = SOURCE_ROOT; }; 65EA2E171273C55200636061 /* ratedesired.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = ratedesired.xml; sourceTree = ""; }; + 65F93B9212EE09280047DB36 /* aes.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aes.lst; sourceTree = ""; }; + 65F93B9312EE09280047DB36 /* aes.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = aes.o; sourceTree = ""; }; + 65F93B9412EE09280047DB36 /* core_cm3.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core_cm3.lst; sourceTree = ""; }; + 65F93B9512EE09280047DB36 /* core_cm3.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = core_cm3.o; sourceTree = ""; }; + 65F93B9612EE09280047DB36 /* crc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = crc.lst; sourceTree = ""; }; + 65F93B9712EE09280047DB36 /* crc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = crc.o; sourceTree = ""; }; + 65F93B9912EE09280047DB36 /* aes.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = aes.o.d; sourceTree = ""; }; + 65F93B9A12EE09280047DB36 /* core_cm3.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = core_cm3.o.d; sourceTree = ""; }; + 65F93B9B12EE09280047DB36 /* crc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = crc.o.d; sourceTree = ""; }; + 65F93B9C12EE09280047DB36 /* fifo_buffer.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = fifo_buffer.o.d; sourceTree = ""; }; + 65F93B9D12EE09280047DB36 /* gpio_in.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = gpio_in.o.d; sourceTree = ""; }; + 65F93B9E12EE09280047DB36 /* main.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = main.o.d; sourceTree = ""; }; + 65F93B9F12EE09280047DB36 /* misc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = misc.o.d; sourceTree = ""; }; + 65F93BA012EE09280047DB36 /* packet_handler.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = packet_handler.o.d; sourceTree = ""; }; + 65F93BA112EE09280047DB36 /* pios_adc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_adc.o.d; sourceTree = ""; }; + 65F93BA212EE09280047DB36 /* pios_board.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_board.o.d; sourceTree = ""; }; + 65F93BA312EE09280047DB36 /* pios_com.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_com.o.d; sourceTree = ""; }; + 65F93BA412EE09280047DB36 /* pios_delay.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_delay.o.d; sourceTree = ""; }; + 65F93BA512EE09280047DB36 /* pios_gpio.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_gpio.o.d; sourceTree = ""; }; + 65F93BA612EE09280047DB36 /* pios_irq.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_irq.o.d; sourceTree = ""; }; + 65F93BA712EE09280047DB36 /* pios_led.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_led.o.d; sourceTree = ""; }; + 65F93BA812EE09280047DB36 /* pios_spi.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_spi.o.d; sourceTree = ""; }; + 65F93BA912EE09280047DB36 /* pios_sys.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_sys.o.d; sourceTree = ""; }; + 65F93BAA12EE09280047DB36 /* pios_usart.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usart.o.d; sourceTree = ""; }; + 65F93BAB12EE09280047DB36 /* pios_usb_hid.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid.o.d; sourceTree = ""; }; + 65F93BAC12EE09280047DB36 /* pios_usb_hid_desc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_desc.o.d; sourceTree = ""; }; + 65F93BAD12EE09280047DB36 /* pios_usb_hid_istr.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_istr.o.d; sourceTree = ""; }; + 65F93BAE12EE09280047DB36 /* pios_usb_hid_prop.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_prop.o.d; sourceTree = ""; }; + 65F93BAF12EE09280047DB36 /* pios_usb_hid_pwr.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_pwr.o.d; sourceTree = ""; }; + 65F93BB012EE09280047DB36 /* printf-stdarg.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = "printf-stdarg.o.d"; sourceTree = ""; }; + 65F93BB112EE09280047DB36 /* rfm22b.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = rfm22b.o.d; sourceTree = ""; }; + 65F93BB212EE09280047DB36 /* saved_settings.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = saved_settings.o.d; sourceTree = ""; }; + 65F93BB312EE09280047DB36 /* stm32f10x_adc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_adc.o.d; sourceTree = ""; }; + 65F93BB412EE09280047DB36 /* stm32f10x_bkp.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_bkp.o.d; sourceTree = ""; }; + 65F93BB512EE09280047DB36 /* stm32f10x_crc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_crc.o.d; sourceTree = ""; }; + 65F93BB612EE09280047DB36 /* stm32f10x_dac.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_dac.o.d; sourceTree = ""; }; + 65F93BB712EE09280047DB36 /* stm32f10x_dbgmcu.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_dbgmcu.o.d; sourceTree = ""; }; + 65F93BB812EE09280047DB36 /* stm32f10x_dma.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_dma.o.d; sourceTree = ""; }; + 65F93BB912EE09280047DB36 /* stm32f10x_exti.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_exti.o.d; sourceTree = ""; }; + 65F93BBA12EE09280047DB36 /* stm32f10x_flash.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_flash.o.d; sourceTree = ""; }; + 65F93BBB12EE09280047DB36 /* stm32f10x_gpio.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_gpio.o.d; sourceTree = ""; }; + 65F93BBC12EE09280047DB36 /* stm32f10x_i2c.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_i2c.o.d; sourceTree = ""; }; + 65F93BBD12EE09280047DB36 /* stm32f10x_iwdg.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_iwdg.o.d; sourceTree = ""; }; + 65F93BBE12EE09280047DB36 /* stm32f10x_pwr.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_pwr.o.d; sourceTree = ""; }; + 65F93BBF12EE09280047DB36 /* stm32f10x_rcc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_rcc.o.d; sourceTree = ""; }; + 65F93BC012EE09280047DB36 /* stm32f10x_rtc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_rtc.o.d; sourceTree = ""; }; + 65F93BC112EE09280047DB36 /* stm32f10x_spi.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_spi.o.d; sourceTree = ""; }; + 65F93BC212EE09280047DB36 /* stm32f10x_tim.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_tim.o.d; sourceTree = ""; }; + 65F93BC312EE09280047DB36 /* stm32f10x_usart.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_usart.o.d; sourceTree = ""; }; + 65F93BC412EE09280047DB36 /* stopwatch.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stopwatch.o.d; sourceTree = ""; }; + 65F93BC512EE09280047DB36 /* system_stm32f10x.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = system_stm32f10x.o.d; sourceTree = ""; }; + 65F93BC612EE09280047DB36 /* transparent_comms.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = transparent_comms.o.d; sourceTree = ""; }; + 65F93BC712EE09280047DB36 /* uavtalk_comms.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = uavtalk_comms.o.d; sourceTree = ""; }; + 65F93BC812EE09280047DB36 /* usb_core.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_core.o.d; sourceTree = ""; }; + 65F93BC912EE09280047DB36 /* usb_init.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_init.o.d; sourceTree = ""; }; + 65F93BCA12EE09280047DB36 /* usb_int.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_int.o.d; sourceTree = ""; }; + 65F93BCB12EE09280047DB36 /* usb_mem.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_mem.o.d; sourceTree = ""; }; + 65F93BCC12EE09280047DB36 /* usb_regs.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_regs.o.d; sourceTree = ""; }; + 65F93BCD12EE09280047DB36 /* usb_sil.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_sil.o.d; sourceTree = ""; }; + 65F93BCE12EE09280047DB36 /* watchdog.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = watchdog.o.d; sourceTree = ""; }; + 65F93BCF12EE09280047DB36 /* fifo_buffer.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fifo_buffer.lst; sourceTree = ""; }; + 65F93BD012EE09280047DB36 /* fifo_buffer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = fifo_buffer.o; sourceTree = ""; }; + 65F93BD112EE09280047DB36 /* gpio_in.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpio_in.lst; sourceTree = ""; }; + 65F93BD212EE09280047DB36 /* gpio_in.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = gpio_in.o; sourceTree = ""; }; + 65F93BD312EE09280047DB36 /* main.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.lst; sourceTree = ""; }; + 65F93BD412EE09280047DB36 /* main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = main.o; sourceTree = ""; }; + 65F93BD512EE09280047DB36 /* misc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = misc.lst; sourceTree = ""; }; + 65F93BD612EE09280047DB36 /* misc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = misc.o; sourceTree = ""; }; + 65F93BD712EE09280047DB36 /* packet_handler.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = packet_handler.lst; sourceTree = ""; }; + 65F93BD812EE09280047DB36 /* packet_handler.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = packet_handler.o; sourceTree = ""; }; + 65F93BD912EE09280047DB36 /* pios_adc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_adc.lst; sourceTree = ""; }; + 65F93BDA12EE09280047DB36 /* pios_adc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_adc.o; sourceTree = ""; }; + 65F93BDB12EE09280047DB36 /* pios_board.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_board.lst; sourceTree = ""; }; + 65F93BDC12EE09280047DB36 /* pios_board.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_board.o; sourceTree = ""; }; + 65F93BDD12EE09280047DB36 /* pios_com.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_com.lst; sourceTree = ""; }; + 65F93BDE12EE09280047DB36 /* pios_com.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_com.o; sourceTree = ""; }; + 65F93BDF12EE09280047DB36 /* pios_delay.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_delay.lst; sourceTree = ""; }; + 65F93BE012EE09280047DB36 /* pios_delay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_delay.o; sourceTree = ""; }; + 65F93BE112EE09280047DB36 /* pios_gpio.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_gpio.lst; sourceTree = ""; }; + 65F93BE212EE09280047DB36 /* pios_gpio.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_gpio.o; sourceTree = ""; }; + 65F93BE312EE09280047DB36 /* pios_irq.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_irq.lst; sourceTree = ""; }; + 65F93BE412EE09280047DB36 /* pios_irq.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_irq.o; sourceTree = ""; }; + 65F93BE512EE09280047DB36 /* pios_led.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_led.lst; sourceTree = ""; }; + 65F93BE612EE09280047DB36 /* pios_led.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_led.o; sourceTree = ""; }; + 65F93BE712EE09280047DB36 /* pios_spi.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_spi.lst; sourceTree = ""; }; + 65F93BE812EE09280047DB36 /* pios_spi.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_spi.o; sourceTree = ""; }; + 65F93BE912EE09280047DB36 /* pios_sys.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_sys.lst; sourceTree = ""; }; + 65F93BEA12EE09280047DB36 /* pios_sys.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_sys.o; sourceTree = ""; }; + 65F93BEB12EE09280047DB36 /* pios_usart.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usart.lst; sourceTree = ""; }; + 65F93BEC12EE09280047DB36 /* pios_usart.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usart.o; sourceTree = ""; }; + 65F93BED12EE09280047DB36 /* pios_usb_hid.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid.lst; sourceTree = ""; }; + 65F93BEE12EE09280047DB36 /* pios_usb_hid.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid.o; sourceTree = ""; }; + 65F93BEF12EE09280047DB36 /* pios_usb_hid_desc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_desc.lst; sourceTree = ""; }; + 65F93BF012EE09280047DB36 /* pios_usb_hid_desc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_desc.o; sourceTree = ""; }; + 65F93BF112EE09280047DB36 /* pios_usb_hid_istr.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_istr.lst; sourceTree = ""; }; + 65F93BF212EE09280047DB36 /* pios_usb_hid_istr.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_istr.o; sourceTree = ""; }; + 65F93BF312EE09280047DB36 /* pios_usb_hid_prop.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_prop.lst; sourceTree = ""; }; + 65F93BF412EE09280047DB36 /* pios_usb_hid_prop.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_prop.o; sourceTree = ""; }; + 65F93BF512EE09280047DB36 /* pios_usb_hid_pwr.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_pwr.lst; sourceTree = ""; }; + 65F93BF612EE09280047DB36 /* pios_usb_hid_pwr.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_pwr.o; sourceTree = ""; }; + 65F93BF712EE09280047DB36 /* PipXtreme.elf */ = {isa = PBXFileReference; lastKnownFileType = file; path = PipXtreme.elf; sourceTree = ""; }; + 65F93BF812EE09280047DB36 /* PipXtreme.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PipXtreme.map; sourceTree = ""; }; + 65F93BF912EE09280047DB36 /* printf-stdarg.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "printf-stdarg.lst"; sourceTree = ""; }; + 65F93BFA12EE09280047DB36 /* printf-stdarg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "printf-stdarg.o"; sourceTree = ""; }; + 65F93BFB12EE09280047DB36 /* rfm22b.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rfm22b.lst; sourceTree = ""; }; + 65F93BFC12EE09280047DB36 /* rfm22b.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = rfm22b.o; sourceTree = ""; }; + 65F93BFD12EE09280047DB36 /* saved_settings.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = saved_settings.lst; sourceTree = ""; }; + 65F93BFE12EE09280047DB36 /* saved_settings.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = saved_settings.o; sourceTree = ""; }; + 65F93BFF12EE09280047DB36 /* startup_stm32f10x_MD.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = startup_stm32f10x_MD.lst; sourceTree = ""; }; + 65F93C0012EE09280047DB36 /* startup_stm32f10x_MD.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = startup_stm32f10x_MD.o; sourceTree = ""; }; + 65F93C0112EE09280047DB36 /* stm32f10x_adc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_adc.lst; sourceTree = ""; }; + 65F93C0212EE09280047DB36 /* stm32f10x_adc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_adc.o; sourceTree = ""; }; + 65F93C0312EE09280047DB36 /* stm32f10x_bkp.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_bkp.lst; sourceTree = ""; }; + 65F93C0412EE09280047DB36 /* stm32f10x_bkp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_bkp.o; sourceTree = ""; }; + 65F93C0512EE09280047DB36 /* stm32f10x_crc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_crc.lst; sourceTree = ""; }; + 65F93C0612EE09280047DB36 /* stm32f10x_crc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_crc.o; sourceTree = ""; }; + 65F93C0712EE09280047DB36 /* stm32f10x_dac.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_dac.lst; sourceTree = ""; }; + 65F93C0812EE09280047DB36 /* stm32f10x_dac.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_dac.o; sourceTree = ""; }; + 65F93C0912EE09280047DB36 /* stm32f10x_dbgmcu.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_dbgmcu.lst; sourceTree = ""; }; + 65F93C0A12EE09280047DB36 /* stm32f10x_dbgmcu.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_dbgmcu.o; sourceTree = ""; }; + 65F93C0B12EE09280047DB36 /* stm32f10x_dma.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_dma.lst; sourceTree = ""; }; + 65F93C0C12EE09280047DB36 /* stm32f10x_dma.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_dma.o; sourceTree = ""; }; + 65F93C0D12EE09280047DB36 /* stm32f10x_exti.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_exti.lst; sourceTree = ""; }; + 65F93C0E12EE09280047DB36 /* stm32f10x_exti.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_exti.o; sourceTree = ""; }; + 65F93C0F12EE09280047DB36 /* stm32f10x_flash.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_flash.lst; sourceTree = ""; }; + 65F93C1012EE09280047DB36 /* stm32f10x_flash.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_flash.o; sourceTree = ""; }; + 65F93C1112EE09280047DB36 /* stm32f10x_gpio.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_gpio.lst; sourceTree = ""; }; + 65F93C1212EE09280047DB36 /* stm32f10x_gpio.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_gpio.o; sourceTree = ""; }; + 65F93C1312EE09280047DB36 /* stm32f10x_i2c.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_i2c.lst; sourceTree = ""; }; + 65F93C1412EE09280047DB36 /* stm32f10x_i2c.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_i2c.o; sourceTree = ""; }; + 65F93C1512EE09280047DB36 /* stm32f10x_iwdg.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_iwdg.lst; sourceTree = ""; }; + 65F93C1612EE09280047DB36 /* stm32f10x_iwdg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_iwdg.o; sourceTree = ""; }; + 65F93C1712EE09280047DB36 /* stm32f10x_pwr.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_pwr.lst; sourceTree = ""; }; + 65F93C1812EE09280047DB36 /* stm32f10x_pwr.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_pwr.o; sourceTree = ""; }; + 65F93C1912EE09280047DB36 /* stm32f10x_rcc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_rcc.lst; sourceTree = ""; }; + 65F93C1A12EE09280047DB36 /* stm32f10x_rcc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_rcc.o; sourceTree = ""; }; + 65F93C1B12EE09280047DB36 /* stm32f10x_rtc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_rtc.lst; sourceTree = ""; }; + 65F93C1C12EE09280047DB36 /* stm32f10x_rtc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_rtc.o; sourceTree = ""; }; + 65F93C1D12EE09280047DB36 /* stm32f10x_spi.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_spi.lst; sourceTree = ""; }; + 65F93C1E12EE09280047DB36 /* stm32f10x_spi.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_spi.o; sourceTree = ""; }; + 65F93C1F12EE09280047DB36 /* stm32f10x_tim.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_tim.lst; sourceTree = ""; }; + 65F93C2012EE09280047DB36 /* stm32f10x_tim.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_tim.o; sourceTree = ""; }; + 65F93C2112EE09280047DB36 /* stm32f10x_usart.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_usart.lst; sourceTree = ""; }; + 65F93C2212EE09280047DB36 /* stm32f10x_usart.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_usart.o; sourceTree = ""; }; + 65F93C2312EE09280047DB36 /* stopwatch.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stopwatch.lst; sourceTree = ""; }; + 65F93C2412EE09280047DB36 /* stopwatch.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stopwatch.o; sourceTree = ""; }; + 65F93C2512EE09280047DB36 /* system_stm32f10x.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = system_stm32f10x.lst; sourceTree = ""; }; + 65F93C2612EE09280047DB36 /* system_stm32f10x.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = system_stm32f10x.o; sourceTree = ""; }; + 65F93C2712EE09280047DB36 /* transparent_comms.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = transparent_comms.lst; sourceTree = ""; }; + 65F93C2812EE09280047DB36 /* transparent_comms.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = transparent_comms.o; sourceTree = ""; }; + 65F93C2912EE09280047DB36 /* uavtalk_comms.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavtalk_comms.lst; sourceTree = ""; }; + 65F93C2A12EE09280047DB36 /* uavtalk_comms.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = uavtalk_comms.o; sourceTree = ""; }; + 65F93C2B12EE09280047DB36 /* usb_core.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_core.lst; sourceTree = ""; }; + 65F93C2C12EE09280047DB36 /* usb_core.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_core.o; sourceTree = ""; }; + 65F93C2D12EE09280047DB36 /* usb_init.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_init.lst; sourceTree = ""; }; + 65F93C2E12EE09280047DB36 /* usb_init.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_init.o; sourceTree = ""; }; + 65F93C2F12EE09280047DB36 /* usb_int.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_int.lst; sourceTree = ""; }; + 65F93C3012EE09280047DB36 /* usb_int.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_int.o; sourceTree = ""; }; + 65F93C3112EE09280047DB36 /* usb_mem.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_mem.lst; sourceTree = ""; }; + 65F93C3212EE09280047DB36 /* usb_mem.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_mem.o; sourceTree = ""; }; + 65F93C3312EE09280047DB36 /* usb_regs.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_regs.lst; sourceTree = ""; }; + 65F93C3412EE09280047DB36 /* usb_regs.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_regs.o; sourceTree = ""; }; + 65F93C3512EE09280047DB36 /* usb_sil.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_sil.lst; sourceTree = ""; }; + 65F93C3612EE09280047DB36 /* usb_sil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_sil.o; sourceTree = ""; }; + 65F93C3712EE09280047DB36 /* watchdog.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = watchdog.lst; sourceTree = ""; }; + 65F93C3812EE09280047DB36 /* watchdog.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = watchdog.o; sourceTree = ""; }; + 65F93C3912EE09280047DB36 /* aes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aes.c; sourceTree = ""; }; + 65F93C3B12EE09280047DB36 /* aes.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aes.lst; sourceTree = ""; }; + 65F93C3C12EE09280047DB36 /* aes.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = aes.o; sourceTree = ""; }; + 65F93C3D12EE09280047DB36 /* buffer.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = buffer.lst; sourceTree = ""; }; + 65F93C3E12EE09280047DB36 /* buffer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = buffer.o; sourceTree = ""; }; + 65F93C3F12EE09280047DB36 /* core_cm3.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core_cm3.lst; sourceTree = ""; }; + 65F93C4012EE09280047DB36 /* core_cm3.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = core_cm3.o; sourceTree = ""; }; + 65F93C4112EE09280047DB36 /* crc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = crc.lst; sourceTree = ""; }; + 65F93C4212EE09280047DB36 /* crc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = crc.o; sourceTree = ""; }; + 65F93C4412EE09280047DB36 /* aes.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = aes.o.d; sourceTree = ""; }; + 65F93C4512EE09280047DB36 /* buffer.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = buffer.o.d; sourceTree = ""; }; + 65F93C4612EE09280047DB36 /* core_cm3.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = core_cm3.o.d; sourceTree = ""; }; + 65F93C4712EE09280047DB36 /* crc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = crc.o.d; sourceTree = ""; }; + 65F93C4812EE09280047DB36 /* fifo_buffer.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = fifo_buffer.o.d; sourceTree = ""; }; + 65F93C4912EE09280047DB36 /* gpio_in.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = gpio_in.o.d; sourceTree = ""; }; + 65F93C4A12EE09280047DB36 /* main.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = main.o.d; sourceTree = ""; }; + 65F93C4B12EE09280047DB36 /* misc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = misc.o.d; sourceTree = ""; }; + 65F93C4C12EE09280047DB36 /* packet_handler.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = packet_handler.o.d; sourceTree = ""; }; + 65F93C4D12EE09280047DB36 /* pios_adc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_adc.o.d; sourceTree = ""; }; + 65F93C4E12EE09280047DB36 /* pios_board.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_board.o.d; sourceTree = ""; }; + 65F93C4F12EE09280047DB36 /* pios_com.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_com.o.d; sourceTree = ""; }; + 65F93C5012EE09280047DB36 /* pios_delay.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_delay.o.d; sourceTree = ""; }; + 65F93C5112EE09280047DB36 /* pios_gpio.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_gpio.o.d; sourceTree = ""; }; + 65F93C5212EE09280047DB36 /* pios_irq.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_irq.o.d; sourceTree = ""; }; + 65F93C5312EE09280047DB36 /* pios_led.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_led.o.d; sourceTree = ""; }; + 65F93C5412EE09280047DB36 /* pios_spi.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_spi.o.d; sourceTree = ""; }; + 65F93C5512EE09280047DB36 /* pios_sys.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_sys.o.d; sourceTree = ""; }; + 65F93C5612EE09280047DB36 /* pios_usart.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usart.o.d; sourceTree = ""; }; + 65F93C5712EE09280047DB36 /* pios_usb_hid.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid.o.d; sourceTree = ""; }; + 65F93C5812EE09280047DB36 /* pios_usb_hid_desc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_desc.o.d; sourceTree = ""; }; + 65F93C5912EE09280047DB36 /* pios_usb_hid_istr.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_istr.o.d; sourceTree = ""; }; + 65F93C5A12EE09280047DB36 /* pios_usb_hid_prop.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_prop.o.d; sourceTree = ""; }; + 65F93C5B12EE09280047DB36 /* pios_usb_hid_pwr.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_usb_hid_pwr.o.d; sourceTree = ""; }; + 65F93C5C12EE09280047DB36 /* pios_wdg.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = pios_wdg.o.d; sourceTree = ""; }; + 65F93C5D12EE09280047DB36 /* printf-stdarg.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = "printf-stdarg.o.d"; sourceTree = ""; }; + 65F93C5E12EE09280047DB36 /* rfm22b.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = rfm22b.o.d; sourceTree = ""; }; + 65F93C5F12EE09280047DB36 /* saved_settings.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = saved_settings.o.d; sourceTree = ""; }; + 65F93C6012EE09280047DB36 /* stm32f10x_adc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_adc.o.d; sourceTree = ""; }; + 65F93C6112EE09280047DB36 /* stm32f10x_bkp.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_bkp.o.d; sourceTree = ""; }; + 65F93C6212EE09280047DB36 /* stm32f10x_crc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_crc.o.d; sourceTree = ""; }; + 65F93C6312EE09280047DB36 /* stm32f10x_dac.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_dac.o.d; sourceTree = ""; }; + 65F93C6412EE09280047DB36 /* stm32f10x_dbgmcu.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_dbgmcu.o.d; sourceTree = ""; }; + 65F93C6512EE09280047DB36 /* stm32f10x_dma.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_dma.o.d; sourceTree = ""; }; + 65F93C6612EE09280047DB36 /* stm32f10x_exti.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_exti.o.d; sourceTree = ""; }; + 65F93C6712EE09280047DB36 /* stm32f10x_flash.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_flash.o.d; sourceTree = ""; }; + 65F93C6812EE09280047DB36 /* stm32f10x_gpio.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_gpio.o.d; sourceTree = ""; }; + 65F93C6912EE09280047DB36 /* stm32f10x_i2c.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_i2c.o.d; sourceTree = ""; }; + 65F93C6A12EE09280047DB36 /* stm32f10x_iwdg.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_iwdg.o.d; sourceTree = ""; }; + 65F93C6B12EE09280047DB36 /* stm32f10x_pwr.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_pwr.o.d; sourceTree = ""; }; + 65F93C6C12EE09280047DB36 /* stm32f10x_rcc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_rcc.o.d; sourceTree = ""; }; + 65F93C6D12EE09280047DB36 /* stm32f10x_rtc.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_rtc.o.d; sourceTree = ""; }; + 65F93C6E12EE09280047DB36 /* stm32f10x_spi.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_spi.o.d; sourceTree = ""; }; + 65F93C6F12EE09280047DB36 /* stm32f10x_tim.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_tim.o.d; sourceTree = ""; }; + 65F93C7012EE09280047DB36 /* stm32f10x_usart.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stm32f10x_usart.o.d; sourceTree = ""; }; + 65F93C7112EE09280047DB36 /* stopwatch.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = stopwatch.o.d; sourceTree = ""; }; + 65F93C7212EE09280047DB36 /* system_stm32f10x.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = system_stm32f10x.o.d; sourceTree = ""; }; + 65F93C7312EE09280047DB36 /* transparent_comms.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = transparent_comms.o.d; sourceTree = ""; }; + 65F93C7412EE09280047DB36 /* uavtalk_comms.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = uavtalk_comms.o.d; sourceTree = ""; }; + 65F93C7512EE09280047DB36 /* usb_core.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_core.o.d; sourceTree = ""; }; + 65F93C7612EE09280047DB36 /* usb_init.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_init.o.d; sourceTree = ""; }; + 65F93C7712EE09280047DB36 /* usb_int.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_int.o.d; sourceTree = ""; }; + 65F93C7812EE09280047DB36 /* usb_mem.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_mem.o.d; sourceTree = ""; }; + 65F93C7912EE09280047DB36 /* usb_regs.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_regs.o.d; sourceTree = ""; }; + 65F93C7A12EE09280047DB36 /* usb_sil.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = usb_sil.o.d; sourceTree = ""; }; + 65F93C7B12EE09280047DB36 /* watchdog.o.d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.dtrace; path = watchdog.o.d; sourceTree = ""; }; + 65F93C7C12EE09280047DB36 /* fifo_buffer.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fifo_buffer.lst; sourceTree = ""; }; + 65F93C7D12EE09280047DB36 /* fifo_buffer.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = fifo_buffer.o; sourceTree = ""; }; + 65F93C7E12EE09280047DB36 /* gpio_in.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpio_in.lst; sourceTree = ""; }; + 65F93C7F12EE09280047DB36 /* gpio_in.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = gpio_in.o; sourceTree = ""; }; + 65F93C8012EE09280047DB36 /* main.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.lst; sourceTree = ""; }; + 65F93C8112EE09280047DB36 /* main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = main.o; sourceTree = ""; }; + 65F93C8212EE09280047DB36 /* misc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = misc.lst; sourceTree = ""; }; + 65F93C8312EE09280047DB36 /* misc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = misc.o; sourceTree = ""; }; + 65F93C8412EE09290047DB36 /* packet_handler.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = packet_handler.lst; sourceTree = ""; }; + 65F93C8512EE09290047DB36 /* packet_handler.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = packet_handler.o; sourceTree = ""; }; + 65F93C8612EE09290047DB36 /* pios_adc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_adc.lst; sourceTree = ""; }; + 65F93C8712EE09290047DB36 /* pios_adc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_adc.o; sourceTree = ""; }; + 65F93C8812EE09290047DB36 /* pios_board.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_board.lst; sourceTree = ""; }; + 65F93C8912EE09290047DB36 /* pios_board.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_board.o; sourceTree = ""; }; + 65F93C8A12EE09290047DB36 /* pios_com.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_com.lst; sourceTree = ""; }; + 65F93C8B12EE09290047DB36 /* pios_com.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_com.o; sourceTree = ""; }; + 65F93C8C12EE09290047DB36 /* pios_delay.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_delay.lst; sourceTree = ""; }; + 65F93C8D12EE09290047DB36 /* pios_delay.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_delay.o; sourceTree = ""; }; + 65F93C8E12EE09290047DB36 /* pios_gpio.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_gpio.lst; sourceTree = ""; }; + 65F93C8F12EE09290047DB36 /* pios_gpio.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_gpio.o; sourceTree = ""; }; + 65F93C9012EE09290047DB36 /* pios_irq.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_irq.lst; sourceTree = ""; }; + 65F93C9112EE09290047DB36 /* pios_irq.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_irq.o; sourceTree = ""; }; + 65F93C9212EE09290047DB36 /* pios_led.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_led.lst; sourceTree = ""; }; + 65F93C9312EE09290047DB36 /* pios_led.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_led.o; sourceTree = ""; }; + 65F93C9412EE09290047DB36 /* pios_spi.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_spi.lst; sourceTree = ""; }; + 65F93C9512EE09290047DB36 /* pios_spi.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_spi.o; sourceTree = ""; }; + 65F93C9612EE09290047DB36 /* pios_sys.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_sys.lst; sourceTree = ""; }; + 65F93C9712EE09290047DB36 /* pios_sys.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_sys.o; sourceTree = ""; }; + 65F93C9812EE09290047DB36 /* pios_usart.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usart.lst; sourceTree = ""; }; + 65F93C9912EE09290047DB36 /* pios_usart.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usart.o; sourceTree = ""; }; + 65F93C9A12EE09290047DB36 /* pios_usb_hid.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid.lst; sourceTree = ""; }; + 65F93C9B12EE09290047DB36 /* pios_usb_hid.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid.o; sourceTree = ""; }; + 65F93C9C12EE09290047DB36 /* pios_usb_hid_desc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_desc.lst; sourceTree = ""; }; + 65F93C9D12EE09290047DB36 /* pios_usb_hid_desc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_desc.o; sourceTree = ""; }; + 65F93C9E12EE09290047DB36 /* pios_usb_hid_istr.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_istr.lst; sourceTree = ""; }; + 65F93C9F12EE09290047DB36 /* pios_usb_hid_istr.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_istr.o; sourceTree = ""; }; + 65F93CA012EE09290047DB36 /* pios_usb_hid_prop.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_prop.lst; sourceTree = ""; }; + 65F93CA112EE09290047DB36 /* pios_usb_hid_prop.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_prop.o; sourceTree = ""; }; + 65F93CA212EE09290047DB36 /* pios_usb_hid_pwr.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_usb_hid_pwr.lst; sourceTree = ""; }; + 65F93CA312EE09290047DB36 /* pios_usb_hid_pwr.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_usb_hid_pwr.o; sourceTree = ""; }; + 65F93CA412EE09290047DB36 /* pios_wdg.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pios_wdg.lst; sourceTree = ""; }; + 65F93CA512EE09290047DB36 /* pios_wdg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = pios_wdg.o; sourceTree = ""; }; + 65F93CA612EE09290047DB36 /* PipXtreme.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = PipXtreme.bin; sourceTree = ""; }; + 65F93CA712EE09290047DB36 /* PipXtreme.elf */ = {isa = PBXFileReference; lastKnownFileType = file; path = PipXtreme.elf; sourceTree = ""; }; + 65F93CA812EE09290047DB36 /* PipXtreme.hex */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PipXtreme.hex; sourceTree = ""; }; + 65F93CA912EE09290047DB36 /* PipXtreme.lss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PipXtreme.lss; sourceTree = ""; }; + 65F93CAA12EE09290047DB36 /* PipXtreme.map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PipXtreme.map; sourceTree = ""; }; + 65F93CAB12EE09290047DB36 /* PipXtreme.sym */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PipXtreme.sym; sourceTree = ""; }; + 65F93CAC12EE09290047DB36 /* printf-stdarg.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "printf-stdarg.lst"; sourceTree = ""; }; + 65F93CAD12EE09290047DB36 /* printf-stdarg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "printf-stdarg.o"; sourceTree = ""; }; + 65F93CAE12EE09290047DB36 /* rfm22b.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rfm22b.lst; sourceTree = ""; }; + 65F93CAF12EE09290047DB36 /* rfm22b.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = rfm22b.o; sourceTree = ""; }; + 65F93CB012EE09290047DB36 /* saved_settings.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = saved_settings.lst; sourceTree = ""; }; + 65F93CB112EE09290047DB36 /* saved_settings.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = saved_settings.o; sourceTree = ""; }; + 65F93CB212EE09290047DB36 /* startup_stm32f10x_MD.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = startup_stm32f10x_MD.lst; sourceTree = ""; }; + 65F93CB312EE09290047DB36 /* startup_stm32f10x_MD.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = startup_stm32f10x_MD.o; sourceTree = ""; }; + 65F93CB412EE09290047DB36 /* stm32f10x_adc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_adc.lst; sourceTree = ""; }; + 65F93CB512EE09290047DB36 /* stm32f10x_adc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_adc.o; sourceTree = ""; }; + 65F93CB612EE09290047DB36 /* stm32f10x_bkp.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_bkp.lst; sourceTree = ""; }; + 65F93CB712EE09290047DB36 /* stm32f10x_bkp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_bkp.o; sourceTree = ""; }; + 65F93CB812EE09290047DB36 /* stm32f10x_crc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_crc.lst; sourceTree = ""; }; + 65F93CB912EE09290047DB36 /* stm32f10x_crc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_crc.o; sourceTree = ""; }; + 65F93CBA12EE09290047DB36 /* stm32f10x_dac.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_dac.lst; sourceTree = ""; }; + 65F93CBB12EE09290047DB36 /* stm32f10x_dac.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_dac.o; sourceTree = ""; }; + 65F93CBC12EE09290047DB36 /* stm32f10x_dbgmcu.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_dbgmcu.lst; sourceTree = ""; }; + 65F93CBD12EE09290047DB36 /* stm32f10x_dbgmcu.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_dbgmcu.o; sourceTree = ""; }; + 65F93CBE12EE09290047DB36 /* stm32f10x_dma.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_dma.lst; sourceTree = ""; }; + 65F93CBF12EE09290047DB36 /* stm32f10x_dma.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_dma.o; sourceTree = ""; }; + 65F93CC012EE09290047DB36 /* stm32f10x_exti.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_exti.lst; sourceTree = ""; }; + 65F93CC112EE09290047DB36 /* stm32f10x_exti.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_exti.o; sourceTree = ""; }; + 65F93CC212EE09290047DB36 /* stm32f10x_flash.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_flash.lst; sourceTree = ""; }; + 65F93CC312EE09290047DB36 /* stm32f10x_flash.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_flash.o; sourceTree = ""; }; + 65F93CC412EE09290047DB36 /* stm32f10x_gpio.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_gpio.lst; sourceTree = ""; }; + 65F93CC512EE09290047DB36 /* stm32f10x_gpio.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_gpio.o; sourceTree = ""; }; + 65F93CC612EE09290047DB36 /* stm32f10x_i2c.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_i2c.lst; sourceTree = ""; }; + 65F93CC712EE09290047DB36 /* stm32f10x_i2c.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_i2c.o; sourceTree = ""; }; + 65F93CC812EE09290047DB36 /* stm32f10x_iwdg.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_iwdg.lst; sourceTree = ""; }; + 65F93CC912EE09290047DB36 /* stm32f10x_iwdg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_iwdg.o; sourceTree = ""; }; + 65F93CCA12EE09290047DB36 /* stm32f10x_pwr.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_pwr.lst; sourceTree = ""; }; + 65F93CCB12EE09290047DB36 /* stm32f10x_pwr.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_pwr.o; sourceTree = ""; }; + 65F93CCC12EE09290047DB36 /* stm32f10x_rcc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_rcc.lst; sourceTree = ""; }; + 65F93CCD12EE09290047DB36 /* stm32f10x_rcc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_rcc.o; sourceTree = ""; }; + 65F93CCE12EE09290047DB36 /* stm32f10x_rtc.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_rtc.lst; sourceTree = ""; }; + 65F93CCF12EE09290047DB36 /* stm32f10x_rtc.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_rtc.o; sourceTree = ""; }; + 65F93CD012EE09290047DB36 /* stm32f10x_spi.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_spi.lst; sourceTree = ""; }; + 65F93CD112EE09290047DB36 /* stm32f10x_spi.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_spi.o; sourceTree = ""; }; + 65F93CD212EE09290047DB36 /* stm32f10x_tim.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_tim.lst; sourceTree = ""; }; + 65F93CD312EE09290047DB36 /* stm32f10x_tim.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_tim.o; sourceTree = ""; }; + 65F93CD412EE09290047DB36 /* stm32f10x_usart.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stm32f10x_usart.lst; sourceTree = ""; }; + 65F93CD512EE09290047DB36 /* stm32f10x_usart.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stm32f10x_usart.o; sourceTree = ""; }; + 65F93CD612EE09290047DB36 /* stopwatch.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stopwatch.lst; sourceTree = ""; }; + 65F93CD712EE09290047DB36 /* stopwatch.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = stopwatch.o; sourceTree = ""; }; + 65F93CD812EE09290047DB36 /* system_stm32f10x.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = system_stm32f10x.lst; sourceTree = ""; }; + 65F93CD912EE09290047DB36 /* system_stm32f10x.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = system_stm32f10x.o; sourceTree = ""; }; + 65F93CDA12EE09290047DB36 /* transparent_comms.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = transparent_comms.lst; sourceTree = ""; }; + 65F93CDB12EE09290047DB36 /* transparent_comms.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = transparent_comms.o; sourceTree = ""; }; + 65F93CDC12EE09290047DB36 /* uavtalk_comms.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavtalk_comms.lst; sourceTree = ""; }; + 65F93CDD12EE09290047DB36 /* uavtalk_comms.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = uavtalk_comms.o; sourceTree = ""; }; + 65F93CDE12EE09290047DB36 /* usb_core.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_core.lst; sourceTree = ""; }; + 65F93CDF12EE09290047DB36 /* usb_core.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_core.o; sourceTree = ""; }; + 65F93CE012EE09290047DB36 /* usb_init.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_init.lst; sourceTree = ""; }; + 65F93CE112EE09290047DB36 /* usb_init.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_init.o; sourceTree = ""; }; + 65F93CE212EE09290047DB36 /* usb_int.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_int.lst; sourceTree = ""; }; + 65F93CE312EE09290047DB36 /* usb_int.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_int.o; sourceTree = ""; }; + 65F93CE412EE09290047DB36 /* usb_mem.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_mem.lst; sourceTree = ""; }; + 65F93CE512EE09290047DB36 /* usb_mem.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_mem.o; sourceTree = ""; }; + 65F93CE612EE09290047DB36 /* usb_regs.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_regs.lst; sourceTree = ""; }; + 65F93CE712EE09290047DB36 /* usb_regs.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_regs.o; sourceTree = ""; }; + 65F93CE812EE09290047DB36 /* usb_sil.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = usb_sil.lst; sourceTree = ""; }; + 65F93CE912EE09290047DB36 /* usb_sil.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = usb_sil.o; sourceTree = ""; }; + 65F93CEA12EE09290047DB36 /* watchdog.lst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = watchdog.lst; sourceTree = ""; }; + 65F93CEB12EE09290047DB36 /* watchdog.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = watchdog.o; sourceTree = ""; }; + 65F93CEC12EE09290047DB36 /* crc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = crc.c; sourceTree = ""; }; + 65F93CED12EE09290047DB36 /* gpio_in.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gpio_in.c; sourceTree = ""; }; + 65F93CEF12EE09290047DB36 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = ""; }; + 65F93CF012EE09290047DB36 /* crc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crc.h; sourceTree = ""; }; + 65F93CF112EE09290047DB36 /* gpio_in.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpio_in.h; sourceTree = ""; }; + 65F93CF212EE09290047DB36 /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = main.h; sourceTree = ""; }; + 65F93CF312EE09290047DB36 /* packet_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packet_handler.h; sourceTree = ""; }; + 65F93CF412EE09290047DB36 /* pios_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pios_config.h; sourceTree = ""; }; + 65F93CF512EE09290047DB36 /* pios_usb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pios_usb.h; sourceTree = ""; }; + 65F93CF612EE09290047DB36 /* pios_usb_hid_desc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pios_usb_hid_desc.h; sourceTree = ""; }; + 65F93CF712EE09290047DB36 /* rfm22b.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rfm22b.h; sourceTree = ""; }; + 65F93CF812EE09290047DB36 /* saved_settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = saved_settings.h; sourceTree = ""; }; + 65F93CF912EE09290047DB36 /* stopwatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stopwatch.h; sourceTree = ""; }; + 65F93CFA12EE09290047DB36 /* transparent_comms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transparent_comms.h; sourceTree = ""; }; + 65F93CFB12EE09290047DB36 /* uavtalk_comms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavtalk_comms.h; sourceTree = ""; }; + 65F93CFC12EE09290047DB36 /* usb_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usb_conf.h; sourceTree = ""; }; + 65F93CFD12EE09290047DB36 /* watchdog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = watchdog.h; sourceTree = ""; }; + 65F93CFE12EE09290047DB36 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = ""; }; + 65F93CFF12EE09290047DB36 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 65F93D0012EE09290047DB36 /* packet_handler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = packet_handler.c; sourceTree = ""; }; + 65F93D0112EE09290047DB36 /* pios_board.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pios_board.c; sourceTree = ""; }; + 65F93D0212EE09290047DB36 /* pios_usb_hid_desc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pios_usb_hid_desc.c; sourceTree = ""; }; + 65F93D0312EE09290047DB36 /* rfm22b.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rfm22b.c; sourceTree = ""; }; + 65F93D0412EE09290047DB36 /* saved_settings.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = saved_settings.c; sourceTree = ""; }; + 65F93D0512EE09290047DB36 /* stopwatch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stopwatch.c; sourceTree = ""; }; + 65F93D0612EE09290047DB36 /* transparent_comms.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = transparent_comms.c; sourceTree = ""; }; + 65F93D0712EE09290047DB36 /* uavtalk_comms.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uavtalk_comms.c; sourceTree = ""; }; + 65F93D0812EE09290047DB36 /* watchdog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = watchdog.c; sourceTree = ""; }; 65FBE14412E7C98100176B5A /* pios_servo_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pios_servo_priv.h; sourceTree = ""; }; 65FC66AA123F30F100B04F74 /* ahrs_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ahrs_timer.c; path = ../../AHRS/ahrs_timer.c; sourceTree = SOURCE_ROOT; }; 65FC66AB123F312A00B04F74 /* ahrs_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ahrs_timer.h; sourceTree = ""; }; @@ -3453,6 +3824,7 @@ 657CEEB5121DBC49007A1FBE /* flight */ = { isa = PBXGroup; children = ( + 65F93B9012EE09280047DB36 /* PipXtreme */, 65B7E6AC120DF1CD000C1123 /* AHRS */, 65E6DF7012E02E8E00058553 /* CopterControl */, 65E8EF1E11EEA61E00BBF654 /* OpenPilot */, @@ -7870,6 +8242,425 @@ path = ../../PiOS/STM32F10x/Libraries/STM32F10x_StdPeriph_Driver/src; sourceTree = SOURCE_ROOT; }; + 65F93B9012EE09280047DB36 /* PipXtreme */ = { + isa = PBXGroup; + children = ( + 65F93B9112EE09280047DB36 /* ....buildflightpipxtreme */, + 65F93C3912EE09280047DB36 /* aes.c */, + 65F93C3A12EE09280047DB36 /* Build */, + 65F93CEC12EE09290047DB36 /* crc.c */, + 65F93CED12EE09290047DB36 /* gpio_in.c */, + 65F93CEE12EE09290047DB36 /* inc */, + 65F93CFE12EE09290047DB36 /* main.c */, + 65F93CFF12EE09290047DB36 /* Makefile */, + 65F93D0012EE09290047DB36 /* packet_handler.c */, + 65F93D0112EE09290047DB36 /* pios_board.c */, + 65F93D0212EE09290047DB36 /* pios_usb_hid_desc.c */, + 65F93D0312EE09290047DB36 /* rfm22b.c */, + 65F93D0412EE09290047DB36 /* saved_settings.c */, + 65F93D0512EE09290047DB36 /* stopwatch.c */, + 65F93D0612EE09290047DB36 /* transparent_comms.c */, + 65F93D0712EE09290047DB36 /* uavtalk_comms.c */, + 65F93D0812EE09290047DB36 /* watchdog.c */, + ); + name = PipXtreme; + path = ../../PipXtreme; + sourceTree = SOURCE_ROOT; + }; + 65F93B9112EE09280047DB36 /* ....buildflightpipxtreme */ = { + isa = PBXGroup; + children = ( + 65F93B9212EE09280047DB36 /* aes.lst */, + 65F93B9312EE09280047DB36 /* aes.o */, + 65F93B9412EE09280047DB36 /* core_cm3.lst */, + 65F93B9512EE09280047DB36 /* core_cm3.o */, + 65F93B9612EE09280047DB36 /* crc.lst */, + 65F93B9712EE09280047DB36 /* crc.o */, + 65F93B9812EE09280047DB36 /* dep */, + 65F93BCF12EE09280047DB36 /* fifo_buffer.lst */, + 65F93BD012EE09280047DB36 /* fifo_buffer.o */, + 65F93BD112EE09280047DB36 /* gpio_in.lst */, + 65F93BD212EE09280047DB36 /* gpio_in.o */, + 65F93BD312EE09280047DB36 /* main.lst */, + 65F93BD412EE09280047DB36 /* main.o */, + 65F93BD512EE09280047DB36 /* misc.lst */, + 65F93BD612EE09280047DB36 /* misc.o */, + 65F93BD712EE09280047DB36 /* packet_handler.lst */, + 65F93BD812EE09280047DB36 /* packet_handler.o */, + 65F93BD912EE09280047DB36 /* pios_adc.lst */, + 65F93BDA12EE09280047DB36 /* pios_adc.o */, + 65F93BDB12EE09280047DB36 /* pios_board.lst */, + 65F93BDC12EE09280047DB36 /* pios_board.o */, + 65F93BDD12EE09280047DB36 /* pios_com.lst */, + 65F93BDE12EE09280047DB36 /* pios_com.o */, + 65F93BDF12EE09280047DB36 /* pios_delay.lst */, + 65F93BE012EE09280047DB36 /* pios_delay.o */, + 65F93BE112EE09280047DB36 /* pios_gpio.lst */, + 65F93BE212EE09280047DB36 /* pios_gpio.o */, + 65F93BE312EE09280047DB36 /* pios_irq.lst */, + 65F93BE412EE09280047DB36 /* pios_irq.o */, + 65F93BE512EE09280047DB36 /* pios_led.lst */, + 65F93BE612EE09280047DB36 /* pios_led.o */, + 65F93BE712EE09280047DB36 /* pios_spi.lst */, + 65F93BE812EE09280047DB36 /* pios_spi.o */, + 65F93BE912EE09280047DB36 /* pios_sys.lst */, + 65F93BEA12EE09280047DB36 /* pios_sys.o */, + 65F93BEB12EE09280047DB36 /* pios_usart.lst */, + 65F93BEC12EE09280047DB36 /* pios_usart.o */, + 65F93BED12EE09280047DB36 /* pios_usb_hid.lst */, + 65F93BEE12EE09280047DB36 /* pios_usb_hid.o */, + 65F93BEF12EE09280047DB36 /* pios_usb_hid_desc.lst */, + 65F93BF012EE09280047DB36 /* pios_usb_hid_desc.o */, + 65F93BF112EE09280047DB36 /* pios_usb_hid_istr.lst */, + 65F93BF212EE09280047DB36 /* pios_usb_hid_istr.o */, + 65F93BF312EE09280047DB36 /* pios_usb_hid_prop.lst */, + 65F93BF412EE09280047DB36 /* pios_usb_hid_prop.o */, + 65F93BF512EE09280047DB36 /* pios_usb_hid_pwr.lst */, + 65F93BF612EE09280047DB36 /* pios_usb_hid_pwr.o */, + 65F93BF712EE09280047DB36 /* PipXtreme.elf */, + 65F93BF812EE09280047DB36 /* PipXtreme.map */, + 65F93BF912EE09280047DB36 /* printf-stdarg.lst */, + 65F93BFA12EE09280047DB36 /* printf-stdarg.o */, + 65F93BFB12EE09280047DB36 /* rfm22b.lst */, + 65F93BFC12EE09280047DB36 /* rfm22b.o */, + 65F93BFD12EE09280047DB36 /* saved_settings.lst */, + 65F93BFE12EE09280047DB36 /* saved_settings.o */, + 65F93BFF12EE09280047DB36 /* startup_stm32f10x_MD.lst */, + 65F93C0012EE09280047DB36 /* startup_stm32f10x_MD.o */, + 65F93C0112EE09280047DB36 /* stm32f10x_adc.lst */, + 65F93C0212EE09280047DB36 /* stm32f10x_adc.o */, + 65F93C0312EE09280047DB36 /* stm32f10x_bkp.lst */, + 65F93C0412EE09280047DB36 /* stm32f10x_bkp.o */, + 65F93C0512EE09280047DB36 /* stm32f10x_crc.lst */, + 65F93C0612EE09280047DB36 /* stm32f10x_crc.o */, + 65F93C0712EE09280047DB36 /* stm32f10x_dac.lst */, + 65F93C0812EE09280047DB36 /* stm32f10x_dac.o */, + 65F93C0912EE09280047DB36 /* stm32f10x_dbgmcu.lst */, + 65F93C0A12EE09280047DB36 /* stm32f10x_dbgmcu.o */, + 65F93C0B12EE09280047DB36 /* stm32f10x_dma.lst */, + 65F93C0C12EE09280047DB36 /* stm32f10x_dma.o */, + 65F93C0D12EE09280047DB36 /* stm32f10x_exti.lst */, + 65F93C0E12EE09280047DB36 /* stm32f10x_exti.o */, + 65F93C0F12EE09280047DB36 /* stm32f10x_flash.lst */, + 65F93C1012EE09280047DB36 /* stm32f10x_flash.o */, + 65F93C1112EE09280047DB36 /* stm32f10x_gpio.lst */, + 65F93C1212EE09280047DB36 /* stm32f10x_gpio.o */, + 65F93C1312EE09280047DB36 /* stm32f10x_i2c.lst */, + 65F93C1412EE09280047DB36 /* stm32f10x_i2c.o */, + 65F93C1512EE09280047DB36 /* stm32f10x_iwdg.lst */, + 65F93C1612EE09280047DB36 /* stm32f10x_iwdg.o */, + 65F93C1712EE09280047DB36 /* stm32f10x_pwr.lst */, + 65F93C1812EE09280047DB36 /* stm32f10x_pwr.o */, + 65F93C1912EE09280047DB36 /* stm32f10x_rcc.lst */, + 65F93C1A12EE09280047DB36 /* stm32f10x_rcc.o */, + 65F93C1B12EE09280047DB36 /* stm32f10x_rtc.lst */, + 65F93C1C12EE09280047DB36 /* stm32f10x_rtc.o */, + 65F93C1D12EE09280047DB36 /* stm32f10x_spi.lst */, + 65F93C1E12EE09280047DB36 /* stm32f10x_spi.o */, + 65F93C1F12EE09280047DB36 /* stm32f10x_tim.lst */, + 65F93C2012EE09280047DB36 /* stm32f10x_tim.o */, + 65F93C2112EE09280047DB36 /* stm32f10x_usart.lst */, + 65F93C2212EE09280047DB36 /* stm32f10x_usart.o */, + 65F93C2312EE09280047DB36 /* stopwatch.lst */, + 65F93C2412EE09280047DB36 /* stopwatch.o */, + 65F93C2512EE09280047DB36 /* system_stm32f10x.lst */, + 65F93C2612EE09280047DB36 /* system_stm32f10x.o */, + 65F93C2712EE09280047DB36 /* transparent_comms.lst */, + 65F93C2812EE09280047DB36 /* transparent_comms.o */, + 65F93C2912EE09280047DB36 /* uavtalk_comms.lst */, + 65F93C2A12EE09280047DB36 /* uavtalk_comms.o */, + 65F93C2B12EE09280047DB36 /* usb_core.lst */, + 65F93C2C12EE09280047DB36 /* usb_core.o */, + 65F93C2D12EE09280047DB36 /* usb_init.lst */, + 65F93C2E12EE09280047DB36 /* usb_init.o */, + 65F93C2F12EE09280047DB36 /* usb_int.lst */, + 65F93C3012EE09280047DB36 /* usb_int.o */, + 65F93C3112EE09280047DB36 /* usb_mem.lst */, + 65F93C3212EE09280047DB36 /* usb_mem.o */, + 65F93C3312EE09280047DB36 /* usb_regs.lst */, + 65F93C3412EE09280047DB36 /* usb_regs.o */, + 65F93C3512EE09280047DB36 /* usb_sil.lst */, + 65F93C3612EE09280047DB36 /* usb_sil.o */, + 65F93C3712EE09280047DB36 /* watchdog.lst */, + 65F93C3812EE09280047DB36 /* watchdog.o */, + ); + path = ....buildflightpipxtreme; + sourceTree = ""; + }; + 65F93B9812EE09280047DB36 /* dep */ = { + isa = PBXGroup; + children = ( + 65F93B9912EE09280047DB36 /* aes.o.d */, + 65F93B9A12EE09280047DB36 /* core_cm3.o.d */, + 65F93B9B12EE09280047DB36 /* crc.o.d */, + 65F93B9C12EE09280047DB36 /* fifo_buffer.o.d */, + 65F93B9D12EE09280047DB36 /* gpio_in.o.d */, + 65F93B9E12EE09280047DB36 /* main.o.d */, + 65F93B9F12EE09280047DB36 /* misc.o.d */, + 65F93BA012EE09280047DB36 /* packet_handler.o.d */, + 65F93BA112EE09280047DB36 /* pios_adc.o.d */, + 65F93BA212EE09280047DB36 /* pios_board.o.d */, + 65F93BA312EE09280047DB36 /* pios_com.o.d */, + 65F93BA412EE09280047DB36 /* pios_delay.o.d */, + 65F93BA512EE09280047DB36 /* pios_gpio.o.d */, + 65F93BA612EE09280047DB36 /* pios_irq.o.d */, + 65F93BA712EE09280047DB36 /* pios_led.o.d */, + 65F93BA812EE09280047DB36 /* pios_spi.o.d */, + 65F93BA912EE09280047DB36 /* pios_sys.o.d */, + 65F93BAA12EE09280047DB36 /* pios_usart.o.d */, + 65F93BAB12EE09280047DB36 /* pios_usb_hid.o.d */, + 65F93BAC12EE09280047DB36 /* pios_usb_hid_desc.o.d */, + 65F93BAD12EE09280047DB36 /* pios_usb_hid_istr.o.d */, + 65F93BAE12EE09280047DB36 /* pios_usb_hid_prop.o.d */, + 65F93BAF12EE09280047DB36 /* pios_usb_hid_pwr.o.d */, + 65F93BB012EE09280047DB36 /* printf-stdarg.o.d */, + 65F93BB112EE09280047DB36 /* rfm22b.o.d */, + 65F93BB212EE09280047DB36 /* saved_settings.o.d */, + 65F93BB312EE09280047DB36 /* stm32f10x_adc.o.d */, + 65F93BB412EE09280047DB36 /* stm32f10x_bkp.o.d */, + 65F93BB512EE09280047DB36 /* stm32f10x_crc.o.d */, + 65F93BB612EE09280047DB36 /* stm32f10x_dac.o.d */, + 65F93BB712EE09280047DB36 /* stm32f10x_dbgmcu.o.d */, + 65F93BB812EE09280047DB36 /* stm32f10x_dma.o.d */, + 65F93BB912EE09280047DB36 /* stm32f10x_exti.o.d */, + 65F93BBA12EE09280047DB36 /* stm32f10x_flash.o.d */, + 65F93BBB12EE09280047DB36 /* stm32f10x_gpio.o.d */, + 65F93BBC12EE09280047DB36 /* stm32f10x_i2c.o.d */, + 65F93BBD12EE09280047DB36 /* stm32f10x_iwdg.o.d */, + 65F93BBE12EE09280047DB36 /* stm32f10x_pwr.o.d */, + 65F93BBF12EE09280047DB36 /* stm32f10x_rcc.o.d */, + 65F93BC012EE09280047DB36 /* stm32f10x_rtc.o.d */, + 65F93BC112EE09280047DB36 /* stm32f10x_spi.o.d */, + 65F93BC212EE09280047DB36 /* stm32f10x_tim.o.d */, + 65F93BC312EE09280047DB36 /* stm32f10x_usart.o.d */, + 65F93BC412EE09280047DB36 /* stopwatch.o.d */, + 65F93BC512EE09280047DB36 /* system_stm32f10x.o.d */, + 65F93BC612EE09280047DB36 /* transparent_comms.o.d */, + 65F93BC712EE09280047DB36 /* uavtalk_comms.o.d */, + 65F93BC812EE09280047DB36 /* usb_core.o.d */, + 65F93BC912EE09280047DB36 /* usb_init.o.d */, + 65F93BCA12EE09280047DB36 /* usb_int.o.d */, + 65F93BCB12EE09280047DB36 /* usb_mem.o.d */, + 65F93BCC12EE09280047DB36 /* usb_regs.o.d */, + 65F93BCD12EE09280047DB36 /* usb_sil.o.d */, + 65F93BCE12EE09280047DB36 /* watchdog.o.d */, + ); + path = dep; + sourceTree = ""; + }; + 65F93C3A12EE09280047DB36 /* Build */ = { + isa = PBXGroup; + children = ( + 65F93C3B12EE09280047DB36 /* aes.lst */, + 65F93C3C12EE09280047DB36 /* aes.o */, + 65F93C3D12EE09280047DB36 /* buffer.lst */, + 65F93C3E12EE09280047DB36 /* buffer.o */, + 65F93C3F12EE09280047DB36 /* core_cm3.lst */, + 65F93C4012EE09280047DB36 /* core_cm3.o */, + 65F93C4112EE09280047DB36 /* crc.lst */, + 65F93C4212EE09280047DB36 /* crc.o */, + 65F93C4312EE09280047DB36 /* dep */, + 65F93C7C12EE09280047DB36 /* fifo_buffer.lst */, + 65F93C7D12EE09280047DB36 /* fifo_buffer.o */, + 65F93C7E12EE09280047DB36 /* gpio_in.lst */, + 65F93C7F12EE09280047DB36 /* gpio_in.o */, + 65F93C8012EE09280047DB36 /* main.lst */, + 65F93C8112EE09280047DB36 /* main.o */, + 65F93C8212EE09280047DB36 /* misc.lst */, + 65F93C8312EE09280047DB36 /* misc.o */, + 65F93C8412EE09290047DB36 /* packet_handler.lst */, + 65F93C8512EE09290047DB36 /* packet_handler.o */, + 65F93C8612EE09290047DB36 /* pios_adc.lst */, + 65F93C8712EE09290047DB36 /* pios_adc.o */, + 65F93C8812EE09290047DB36 /* pios_board.lst */, + 65F93C8912EE09290047DB36 /* pios_board.o */, + 65F93C8A12EE09290047DB36 /* pios_com.lst */, + 65F93C8B12EE09290047DB36 /* pios_com.o */, + 65F93C8C12EE09290047DB36 /* pios_delay.lst */, + 65F93C8D12EE09290047DB36 /* pios_delay.o */, + 65F93C8E12EE09290047DB36 /* pios_gpio.lst */, + 65F93C8F12EE09290047DB36 /* pios_gpio.o */, + 65F93C9012EE09290047DB36 /* pios_irq.lst */, + 65F93C9112EE09290047DB36 /* pios_irq.o */, + 65F93C9212EE09290047DB36 /* pios_led.lst */, + 65F93C9312EE09290047DB36 /* pios_led.o */, + 65F93C9412EE09290047DB36 /* pios_spi.lst */, + 65F93C9512EE09290047DB36 /* pios_spi.o */, + 65F93C9612EE09290047DB36 /* pios_sys.lst */, + 65F93C9712EE09290047DB36 /* pios_sys.o */, + 65F93C9812EE09290047DB36 /* pios_usart.lst */, + 65F93C9912EE09290047DB36 /* pios_usart.o */, + 65F93C9A12EE09290047DB36 /* pios_usb_hid.lst */, + 65F93C9B12EE09290047DB36 /* pios_usb_hid.o */, + 65F93C9C12EE09290047DB36 /* pios_usb_hid_desc.lst */, + 65F93C9D12EE09290047DB36 /* pios_usb_hid_desc.o */, + 65F93C9E12EE09290047DB36 /* pios_usb_hid_istr.lst */, + 65F93C9F12EE09290047DB36 /* pios_usb_hid_istr.o */, + 65F93CA012EE09290047DB36 /* pios_usb_hid_prop.lst */, + 65F93CA112EE09290047DB36 /* pios_usb_hid_prop.o */, + 65F93CA212EE09290047DB36 /* pios_usb_hid_pwr.lst */, + 65F93CA312EE09290047DB36 /* pios_usb_hid_pwr.o */, + 65F93CA412EE09290047DB36 /* pios_wdg.lst */, + 65F93CA512EE09290047DB36 /* pios_wdg.o */, + 65F93CA612EE09290047DB36 /* PipXtreme.bin */, + 65F93CA712EE09290047DB36 /* PipXtreme.elf */, + 65F93CA812EE09290047DB36 /* PipXtreme.hex */, + 65F93CA912EE09290047DB36 /* PipXtreme.lss */, + 65F93CAA12EE09290047DB36 /* PipXtreme.map */, + 65F93CAB12EE09290047DB36 /* PipXtreme.sym */, + 65F93CAC12EE09290047DB36 /* printf-stdarg.lst */, + 65F93CAD12EE09290047DB36 /* printf-stdarg.o */, + 65F93CAE12EE09290047DB36 /* rfm22b.lst */, + 65F93CAF12EE09290047DB36 /* rfm22b.o */, + 65F93CB012EE09290047DB36 /* saved_settings.lst */, + 65F93CB112EE09290047DB36 /* saved_settings.o */, + 65F93CB212EE09290047DB36 /* startup_stm32f10x_MD.lst */, + 65F93CB312EE09290047DB36 /* startup_stm32f10x_MD.o */, + 65F93CB412EE09290047DB36 /* stm32f10x_adc.lst */, + 65F93CB512EE09290047DB36 /* stm32f10x_adc.o */, + 65F93CB612EE09290047DB36 /* stm32f10x_bkp.lst */, + 65F93CB712EE09290047DB36 /* stm32f10x_bkp.o */, + 65F93CB812EE09290047DB36 /* stm32f10x_crc.lst */, + 65F93CB912EE09290047DB36 /* stm32f10x_crc.o */, + 65F93CBA12EE09290047DB36 /* stm32f10x_dac.lst */, + 65F93CBB12EE09290047DB36 /* stm32f10x_dac.o */, + 65F93CBC12EE09290047DB36 /* stm32f10x_dbgmcu.lst */, + 65F93CBD12EE09290047DB36 /* stm32f10x_dbgmcu.o */, + 65F93CBE12EE09290047DB36 /* stm32f10x_dma.lst */, + 65F93CBF12EE09290047DB36 /* stm32f10x_dma.o */, + 65F93CC012EE09290047DB36 /* stm32f10x_exti.lst */, + 65F93CC112EE09290047DB36 /* stm32f10x_exti.o */, + 65F93CC212EE09290047DB36 /* stm32f10x_flash.lst */, + 65F93CC312EE09290047DB36 /* stm32f10x_flash.o */, + 65F93CC412EE09290047DB36 /* stm32f10x_gpio.lst */, + 65F93CC512EE09290047DB36 /* stm32f10x_gpio.o */, + 65F93CC612EE09290047DB36 /* stm32f10x_i2c.lst */, + 65F93CC712EE09290047DB36 /* stm32f10x_i2c.o */, + 65F93CC812EE09290047DB36 /* stm32f10x_iwdg.lst */, + 65F93CC912EE09290047DB36 /* stm32f10x_iwdg.o */, + 65F93CCA12EE09290047DB36 /* stm32f10x_pwr.lst */, + 65F93CCB12EE09290047DB36 /* stm32f10x_pwr.o */, + 65F93CCC12EE09290047DB36 /* stm32f10x_rcc.lst */, + 65F93CCD12EE09290047DB36 /* stm32f10x_rcc.o */, + 65F93CCE12EE09290047DB36 /* stm32f10x_rtc.lst */, + 65F93CCF12EE09290047DB36 /* stm32f10x_rtc.o */, + 65F93CD012EE09290047DB36 /* stm32f10x_spi.lst */, + 65F93CD112EE09290047DB36 /* stm32f10x_spi.o */, + 65F93CD212EE09290047DB36 /* stm32f10x_tim.lst */, + 65F93CD312EE09290047DB36 /* stm32f10x_tim.o */, + 65F93CD412EE09290047DB36 /* stm32f10x_usart.lst */, + 65F93CD512EE09290047DB36 /* stm32f10x_usart.o */, + 65F93CD612EE09290047DB36 /* stopwatch.lst */, + 65F93CD712EE09290047DB36 /* stopwatch.o */, + 65F93CD812EE09290047DB36 /* system_stm32f10x.lst */, + 65F93CD912EE09290047DB36 /* system_stm32f10x.o */, + 65F93CDA12EE09290047DB36 /* transparent_comms.lst */, + 65F93CDB12EE09290047DB36 /* transparent_comms.o */, + 65F93CDC12EE09290047DB36 /* uavtalk_comms.lst */, + 65F93CDD12EE09290047DB36 /* uavtalk_comms.o */, + 65F93CDE12EE09290047DB36 /* usb_core.lst */, + 65F93CDF12EE09290047DB36 /* usb_core.o */, + 65F93CE012EE09290047DB36 /* usb_init.lst */, + 65F93CE112EE09290047DB36 /* usb_init.o */, + 65F93CE212EE09290047DB36 /* usb_int.lst */, + 65F93CE312EE09290047DB36 /* usb_int.o */, + 65F93CE412EE09290047DB36 /* usb_mem.lst */, + 65F93CE512EE09290047DB36 /* usb_mem.o */, + 65F93CE612EE09290047DB36 /* usb_regs.lst */, + 65F93CE712EE09290047DB36 /* usb_regs.o */, + 65F93CE812EE09290047DB36 /* usb_sil.lst */, + 65F93CE912EE09290047DB36 /* usb_sil.o */, + 65F93CEA12EE09290047DB36 /* watchdog.lst */, + 65F93CEB12EE09290047DB36 /* watchdog.o */, + ); + path = Build; + sourceTree = ""; + }; + 65F93C4312EE09280047DB36 /* dep */ = { + isa = PBXGroup; + children = ( + 65F93C4412EE09280047DB36 /* aes.o.d */, + 65F93C4512EE09280047DB36 /* buffer.o.d */, + 65F93C4612EE09280047DB36 /* core_cm3.o.d */, + 65F93C4712EE09280047DB36 /* crc.o.d */, + 65F93C4812EE09280047DB36 /* fifo_buffer.o.d */, + 65F93C4912EE09280047DB36 /* gpio_in.o.d */, + 65F93C4A12EE09280047DB36 /* main.o.d */, + 65F93C4B12EE09280047DB36 /* misc.o.d */, + 65F93C4C12EE09280047DB36 /* packet_handler.o.d */, + 65F93C4D12EE09280047DB36 /* pios_adc.o.d */, + 65F93C4E12EE09280047DB36 /* pios_board.o.d */, + 65F93C4F12EE09280047DB36 /* pios_com.o.d */, + 65F93C5012EE09280047DB36 /* pios_delay.o.d */, + 65F93C5112EE09280047DB36 /* pios_gpio.o.d */, + 65F93C5212EE09280047DB36 /* pios_irq.o.d */, + 65F93C5312EE09280047DB36 /* pios_led.o.d */, + 65F93C5412EE09280047DB36 /* pios_spi.o.d */, + 65F93C5512EE09280047DB36 /* pios_sys.o.d */, + 65F93C5612EE09280047DB36 /* pios_usart.o.d */, + 65F93C5712EE09280047DB36 /* pios_usb_hid.o.d */, + 65F93C5812EE09280047DB36 /* pios_usb_hid_desc.o.d */, + 65F93C5912EE09280047DB36 /* pios_usb_hid_istr.o.d */, + 65F93C5A12EE09280047DB36 /* pios_usb_hid_prop.o.d */, + 65F93C5B12EE09280047DB36 /* pios_usb_hid_pwr.o.d */, + 65F93C5C12EE09280047DB36 /* pios_wdg.o.d */, + 65F93C5D12EE09280047DB36 /* printf-stdarg.o.d */, + 65F93C5E12EE09280047DB36 /* rfm22b.o.d */, + 65F93C5F12EE09280047DB36 /* saved_settings.o.d */, + 65F93C6012EE09280047DB36 /* stm32f10x_adc.o.d */, + 65F93C6112EE09280047DB36 /* stm32f10x_bkp.o.d */, + 65F93C6212EE09280047DB36 /* stm32f10x_crc.o.d */, + 65F93C6312EE09280047DB36 /* stm32f10x_dac.o.d */, + 65F93C6412EE09280047DB36 /* stm32f10x_dbgmcu.o.d */, + 65F93C6512EE09280047DB36 /* stm32f10x_dma.o.d */, + 65F93C6612EE09280047DB36 /* stm32f10x_exti.o.d */, + 65F93C6712EE09280047DB36 /* stm32f10x_flash.o.d */, + 65F93C6812EE09280047DB36 /* stm32f10x_gpio.o.d */, + 65F93C6912EE09280047DB36 /* stm32f10x_i2c.o.d */, + 65F93C6A12EE09280047DB36 /* stm32f10x_iwdg.o.d */, + 65F93C6B12EE09280047DB36 /* stm32f10x_pwr.o.d */, + 65F93C6C12EE09280047DB36 /* stm32f10x_rcc.o.d */, + 65F93C6D12EE09280047DB36 /* stm32f10x_rtc.o.d */, + 65F93C6E12EE09280047DB36 /* stm32f10x_spi.o.d */, + 65F93C6F12EE09280047DB36 /* stm32f10x_tim.o.d */, + 65F93C7012EE09280047DB36 /* stm32f10x_usart.o.d */, + 65F93C7112EE09280047DB36 /* stopwatch.o.d */, + 65F93C7212EE09280047DB36 /* system_stm32f10x.o.d */, + 65F93C7312EE09280047DB36 /* transparent_comms.o.d */, + 65F93C7412EE09280047DB36 /* uavtalk_comms.o.d */, + 65F93C7512EE09280047DB36 /* usb_core.o.d */, + 65F93C7612EE09280047DB36 /* usb_init.o.d */, + 65F93C7712EE09280047DB36 /* usb_int.o.d */, + 65F93C7812EE09280047DB36 /* usb_mem.o.d */, + 65F93C7912EE09280047DB36 /* usb_regs.o.d */, + 65F93C7A12EE09280047DB36 /* usb_sil.o.d */, + 65F93C7B12EE09280047DB36 /* watchdog.o.d */, + ); + path = dep; + sourceTree = ""; + }; + 65F93CEE12EE09290047DB36 /* inc */ = { + isa = PBXGroup; + children = ( + 65F93CEF12EE09290047DB36 /* aes.h */, + 65F93CF012EE09290047DB36 /* crc.h */, + 65F93CF112EE09290047DB36 /* gpio_in.h */, + 65F93CF212EE09290047DB36 /* main.h */, + 65F93CF312EE09290047DB36 /* packet_handler.h */, + 65F93CF412EE09290047DB36 /* pios_config.h */, + 65F93CF512EE09290047DB36 /* pios_usb.h */, + 65F93CF612EE09290047DB36 /* pios_usb_hid_desc.h */, + 65F93CF712EE09290047DB36 /* rfm22b.h */, + 65F93CF812EE09290047DB36 /* saved_settings.h */, + 65F93CF912EE09290047DB36 /* stopwatch.h */, + 65F93CFA12EE09290047DB36 /* transparent_comms.h */, + 65F93CFB12EE09290047DB36 /* uavtalk_comms.h */, + 65F93CFC12EE09290047DB36 /* usb_conf.h */, + 65F93CFD12EE09290047DB36 /* watchdog.h */, + ); + path = inc; + sourceTree = ""; + }; C6A0FF2B0290797F04C91782 /* Documentation */ = { isa = PBXGroup; children = (