diff --git a/Makefile b/Makefile index 2c89664cf4..3047fd6fe8 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ MAVLINK_PROTOCOL_H=$(MAVLINK_DIR)protocol.h GEN_HEADERS = $(UBX_PROTOCOL_H) $(MTK_PROTOCOL_H) $(XSENS_PROTOCOL_H) $(ABI_MESSAGES_H) $(MAVLINK_PROTOCOL_H) -all: ground_segment ext subdirs_extra lpctools +all: ground_segment ext subdirs_extra _print_building: @echo "------------------------------------------------------------" @@ -253,11 +253,6 @@ ac_h ac fbw ap: static conf generators ext sim: sim_static -# stuff to build and upload the lpc bootloader ... -include Makefile.lpctools -lpctools: lpc21iap - - # # doxygen html documentation # @@ -350,6 +345,6 @@ test_sim: all .PHONY: all print_build_version _print_building _save_build_version update_google_version init dox ground_segment ground_segment.opt \ subdirs $(SUBDIRS) conf ext libpprz libpprzlink.update libpprzlink.install cockpit cockpit.opt tmtc tmtc.opt generators\ -static sim_static lpctools opencv_bebop\ +static sim_static opencv_bebop\ clean cleanspaces ab_clean dist_clean distclean dist_clean_irreversible \ test test_examples test_math test_sim test_all_confs diff --git a/Makefile.lpctools b/Makefile.lpctools deleted file mode 100644 index 0a4d0a10cc..0000000000 --- a/Makefile.lpctools +++ /dev/null @@ -1,31 +0,0 @@ -# Hey Emacs, this is a -*- makefile -*- - -bl: - cd $(AIRBORNE)/arch/lpc21/test/bootloader; $(MAKE) clean; $(MAKE) - -BOOTLOADER_DEV ?= /dev/ttyUSB0 -upload_bl bl.upload: bl - lpc21isp -control $(AIRBORNE)/arch/lpc21/test/bootloader/bl.hex $(BOOTLOADER_DEV) 38400 12000 - -JTAG_INTERFACE ?= olimex-jtag-tiny.cfg -#JTAG_INTERFACE = olimex-arm-usb-ocd.cfg - -upload_jtag: bl - openocd -f interface/$(JTAG_INTERFACE) -f board/olimex_lpc_h2148.cfg -c init -c halt -c "flash write_image erase $(AIRBORNE)/arch/lpc21/test/bootloader/bl.hex" -c reset -c shutdown - - -lpc21iap: - $(MAKE) -C sw/ground_segment/lpc21iap - -upgrade_bl bl.upgrade: bl lpc21iap - $(PAPARAZZI_SRC)/sw/ground_segment/lpc21iap/lpc21iap $(AIRBORNE)/arch/lpc21/test/bootloader/bl_ram.elf - $(PAPARAZZI_SRC)/sw/ground_segment/lpc21iap/lpc21iap $(AIRBORNE)/arch/lpc21/test/bootloader/bl.elf - -ms: - $(MAKE) -C $(AIRBORNE)/arch/lpc21/lpcusb - $(MAKE) -C $(AIRBORNE)/arch/lpc21/lpcusb/examples - -upload_ms ms.upload: ms - $(PAPARAZZI_SRC)/sw/ground_segment/lpc21iap/lpc21iap $(AIRBORNE)/arch/lpc21/lpcusb/examples/msc.elf - -.PHONY: bl upload_bl upload_jtag ms upload_ms lpc21iap upgrade_bl diff --git a/conf/Makefile.lpc21 b/conf/Makefile.lpc21 deleted file mode 100644 index 343f3192d0..0000000000 --- a/conf/Makefile.lpc21 +++ /dev/null @@ -1,290 +0,0 @@ -# Hey Emacs, this is a -*- makefile -*- -# -# Copyright (C) 2003-2005 Pascal Brisset, Antoine Drouin -# -# This file is part of paparazzi. -# -# paparazzi is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# paparazzi 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with paparazzi; see the file COPYING. If not, write to -# the Free Software Foundation, 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# - - -# -# This is the common Makefile for the arm7-target. -# - -#TODO: this is not needed in some cases (e.g. ap target as it is defined there already) -# but it is needed for other targets like tunnel -# only define here or elsewhere? -SRC_ARCH = arch/lpc21 - -# Launch with "make Q=''" to get full command display -Q=@ - - -# -# find compiler toolchain -# -include $(PAPARAZZI_SRC)/conf/Makefile.arm-embedded-toolchain - -# -# if the new arm-none-eabi multilib compiler was not found try the old arm-elf one -# -ifeq ($(CC),) -CC = $(shell which arm-elf-gcc) -LD = $(shell which arm-elf-gcc) -CP = $(shell which arm-elf-objcopy) -DMP = $(shell which arm-elf-objdump) -NM = $(shell which arm-elf-nm) -SIZE = $(shell which arm-elf-size) -endif - - -# MCU name and submodel -MCU = arm7tdmi -THUMB = -mthumb -THUMB_IW = -mthumb-interwork - -# Output format. (can be srec, ihex, binary) -FORMAT = ihex - -#FLASH_MODE=ISP - -SRCARM = $($(TARGET).srcs) - -ASRCARM = crt0.S - -# Optimization level, can be [0, 1, 2, 3, s]. -# 0 = turn off optimization. s = optimize for size. -OPT ?= s -# Slightly bigger .elf files but gains the ability to decode macros -DEBUG_FLAGS ?= -ggdb3 - -CSTANDARD = -std=gnu99 - -CINCS = $(INCLUDES) -I$(SRC_ARCH)/include - -# Compiler flags. -CFLAGS = $(CINCS) -CFLAGS += -O$(OPT) -CFLAGS += $(DEBUG_FLAGS) - -# CFLAGS += -malignment-traps -CFLAGS += -Wa,-adhlns=$(OBJDIR)/$(notdir $(subst $(suffix $<),.lst,$<)) -CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS)) -CFLAGS += -ffunction-sections -fdata-sections -CFLAGS += -finline-limit=1200 --param inline-unit-growth=100 - -# flags for warnings -CFLAGS += -Wall -Wextra -Wunused -CFLAGS += -Wcast-qual -CFLAGS += -Wcast-align -CFLAGS += -Wpointer-arith -CFLAGS += -Wswitch-default -CFLAGS += -Wredundant-decls -Wmissing-declarations -CFLAGS += -Wstrict-prototypes -Wmissing-prototypes -CFLAGS += -Wshadow -CFLAGS += -Wnested-externs - -CFLAGS += $(CSTANDARD) -CFLAGS += $($(TARGET).CFLAGS) $(USER_CFLAGS) $(BOARD_CFLAGS) -# on old lpc, avoid using double precision in some geodetic functions -CFLAGS += -DUSE_SINGLE_PRECISION_LLA_ECEF - -# LPC21 doesn't support unaligned data access -CFLAGS += -DPPRZLINK_UNALIGNED_ACCESS=0 - -# Assembler flags. -ASFLAGS = -Wa,-adhlns=$(OBJDIR)/$(notdir $(<:.S=.lst)) - -#Additional libraries. -MATH_LIB = -lm - -# Linker flags. -LDFLAGS = -n -nostartfiles -Wl,-Map=$(OBJDIR)/$(TARGET).map,--cref -LDFLAGS += -lc -LDFLAGS += $(MATH_LIB) -LDFLAGS += -lc -lgcc -LDFLAGS += $(CPLUSPLUS_LIB) -LDFLAGS += -Wl,--gc-sections -LDFLAGS += $(BOARD_LDFLAGS) - -ifndef LDSCRIPT -ifeq ($(FLASH_MODE),ISP) -LDSCRIPT = $(SRC_ARCH)/LPC2148-ROM.ld -else -LDSCRIPT = $(SRC_ARCH)/LPC2148-ROM-bl.ld -endif -endif -LDFLAGS +=-T$(LDSCRIPT) - - - -# --------------------------------------------------------------------------- -# Flash-Programming support using lpc21isp by Martin Maurer - -# Settings and variables: -LPC21ISP = lpc21isp -LPC21ISP_PORT ?= /dev/ttyS0 -LPC21ISP_FLASHFILE = $(OBJDIR)/$(TARGET).hex -# verbose output: -#LPC21ISP_DEBUG = -debug -# enter bootloader via RS232 DTR/RTS (only if hardware supports this -# feature - see Philips AppNote): -ifndef LPC21ISP_CONTROL -LPC21ISP_CONTROL = -# -control -endif - -# --------------------------------------------------------------------------- -# Flash-Programming support using lpc21iap by Martin Muller (usb bootloader) - -LPC21IAP = $(PAPARAZZI_SRC)/sw/ground_segment/lpc21iap/lpc21iap - -# --------------------------------------------------------------------------- -# Flash-Programming support using openocd -OOCD ?= openocd -OOCD_INTERFACE = ftdi/olimex-arm-usb-ocd -OOCD_TARGET = csc - - -# Define all object files. -COBJ = $(SRC:%.c=$(OBJDIR)/%.o) -AOBJ = $(ASRC:%.S=$(OBJDIR)/%.o) -COBJARM = $(SRCARM:%.c=$(OBJDIR)/%.o) -AOBJARM = $(ASRCARM:%.S=$(OBJDIR)/%.o) - -# Define all listing files. -LST = $(ASRC:.S=.lst) $(ASRCARM:.S=.lst) $(SRC:.c=.lst) $(SRCARM:.c=.lst) - -# Compiler flags to generate dependency files. -GENDEPFLAGS = -MD -MP -MF .dep/$(@F).d - -# Combine all necessary flags and optional flags. -# Add target processor to flags. -ALL_CFLAGS = -mcpu=$(MCU) $(THUMB_IW) -I. $(CFLAGS) -ALL_ASFLAGS = -mcpu=$(MCU) $(THUMB_IW) -I. -x assembler-with-cpp $(ASFLAGS) - -# some common informative targets -include $(PAPARAZZI_SRC)/conf/Makefile.arm-embedded-common - -# Default target. -all: printcommands sizebefore build sizeafter - -# depend order only for parallel make -sizebefore: | printcommands -build: | printcommands sizebefore -sizeafter: | build - -build: $(OBJDIR) elf hex lss sym - -$(OBJDIR): - @echo CREATING object dir $(OBJDIR) - @test -d $(OBJDIR) || mkdir -p $(OBJDIR) - -elf: $(OBJDIR)/$(TARGET).elf -hex: $(OBJDIR)/$(TARGET).hex -lss: $(OBJDIR)/$(TARGET).lss -sym: $(OBJDIR)/$(TARGET).sym - - -# Program the device. -upload program: $(OBJDIR)/$(TARGET).hex -ifeq ($(FLASH_MODE),IAP) - $(SUDO) $(LPC21IAP) $(OBJDIR)/$(TARGET).elf -else ifeq ($(FLASH_MODE),JTAG) - @echo "Using OOCD = $(OOCD)" - @echo -e " OOCD\t$<" - $(Q)$(OOCD) -f interface/$(OOCD_INTERFACE).cfg \ - -f board/$(OOCD_TARGET).cfg \ - -c init \ - -c "reset halt" \ - -c "flash write_image erase $(OBJDIR)/$(TARGET).bin 0x08000000" \ - -c reset \ - -c shutdown -else - @echo - $(LPC21ISP) $(LPC21ISP_CONTROL) $(LPC21ISP_DEBUG) $(LPC21ISP_FLASHFILE) $(LPC21ISP_PORT) $(LPC21ISP_BAUD) $(LPC21ISP_XTAL) -endif - -# Create final output files (.hex, .eep) from ELF output file. -# TODO: handling the .eeprom-section should be redundant -%.hex: %.elf - @echo OBJC $@ - $(Q)$(CP) -O $(FORMAT) $< $@ - - -# Create extended listing file from ELF output file. -# testing: option -C -%.lss: %.elf - @echo OBJD $@ - $(Q)$(DMP) -h -S -C $< > $@ - - -# Create a symbol table from ELF output file. -%.sym: %.elf - @echo NM $@ - $(Q)$(NM) -n $< > $@ - - -# Link: create ELF output file from object files. -.SECONDARY : $(OBJDIR)/$(TARGET).elf -.PRECIOUS : $(AOBJARM) $(AOBJ) $(COBJARM) $(COBJ) -%.elf: $(AOBJARM) $(AOBJ) $(COBJARM) $(COBJ) - @echo LD $@ - $(Q)$(CC) $(THUMB) $(ALL_CFLAGS) $(AOBJARM) $(AOBJ) $(COBJARM) $(COBJ) --output $@ $(LDFLAGS) $($(TARGET).LDFLAGS) - - -# Compile: create object files from C source files. ARM-only -$(OBJDIR)/%.o : %.c $(OBJDIR)/../Makefile.ac - @echo CC $@ - $(Q)test -d $(dir $@) || mkdir -p $(dir $@) - $(Q)$(CC) -MMD -c $(ALL_CFLAGS) $(CONLYFLAGS) $< -o $@ - -$(OBJDIR)/%.o : $(SRC_ARCH)/lpcusb/%.c $(OBJDIR)/../Makefile.ac - @echo CC $@ - $(Q)$(CC) -MMD -c $(ALL_CFLAGS) $(CONLYFLAGS) $< -o $@ - - -# grab files in var/aircrafts/$(AIRCRAFT)/$(TARGET) aka $(OBJDIR) -#$(OBJDIR)/%.o : $(OBJDIR)/%.c -# @echo CC $@ -# $(Q)$(CC) -c $(ALL_CFLAGS) $(CONLYFLAGS) $< -o $@ - -# Assemble: create object files from assembler source files. ARM/Thumb -$(AOBJ) : $(OBJDIR)/%.o : %.S - @echo AS $@ - $(Q)$(CC) -c $(THUMB) $(ALL_ASFLAGS) $< -o $@ - - -# Assemble: create object files from assembler source files. ARM-only -$(AOBJARM) : $(OBJDIR)/%.o : $(SRC_ARCH)/%.S - @echo AS $@ - $(Q)$(CC) -c $(ALL_ASFLAGS) $< -o $@ - - -# Listing of phony targets. -.PHONY : all build elf hex lss sym upload program - - -# -# Dependencies -# - -DEPS = $(addprefix $(OBJDIR)/,$($(TARGET).srcs:.c=.d)) - -ifneq ($(MAKECMDGOALS),clean) --include $(DEPS) -endif diff --git a/conf/airframes/ENAC/conf_enac.xml b/conf/airframes/ENAC/conf_enac.xml index d6f93006ec..93db232a27 100644 --- a/conf/airframes/ENAC/conf_enac.xml +++ b/conf/airframes/ENAC/conf_enac.xml @@ -76,17 +76,6 @@ settings_modules="modules/guidance_indi.xml modules/stabilization_indi.xml modules/nav_basic_rotorcraft.xml modules/guidance_rotorcraft.xml modules/gps.xml modules/air_data.xml modules/imu_common.xml modules/airspeed_ms45xx_i2c.xml" gui_color="#ffff7f7f0000" /> - - diff --git a/conf/airframes/ENAC/fixed-wing/crrcsim.xml b/conf/airframes/ENAC/fixed-wing/crrcsim.xml index 2ddb405d4e..1120916a3a 100644 --- a/conf/airframes/ENAC/fixed-wing/crrcsim.xml +++ b/conf/airframes/ENAC/fixed-wing/crrcsim.xml @@ -1,8 +1,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - -
- -
- - - - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
diff --git a/conf/airframes/ENAC/fixed-wing/firestorm.xml b/conf/airframes/ENAC/fixed-wing/firestorm.xml deleted file mode 100644 index e609d6614f..0000000000 --- a/conf/airframes/ENAC/fixed-wing/firestorm.xml +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - - -
- -
- - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- - - - -
- - - - - -
- -
diff --git a/conf/airframes/ENAC/fixed-wing/twinjet2.xml b/conf/airframes/ENAC/fixed-wing/twinjet2.xml deleted file mode 100644 index 9d37a64e6d..0000000000 --- a/conf/airframes/ENAC/fixed-wing/twinjet2.xml +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - - -
- - - -
- - -
- -
- - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
- -
- -
diff --git a/conf/airframes/ENAC/fixed-wing/weasel.xml b/conf/airframes/ENAC/fixed-wing/weasel.xml deleted file mode 100644 index 013e937dae..0000000000 --- a/conf/airframes/ENAC/fixed-wing/weasel.xml +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - -
- -
- - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - -
- -
- -
- -
- - - - - -
- -
- - - - - - -
- -
diff --git a/conf/airframes/ENAC/quadrotor/booz2_g1.xml b/conf/airframes/ENAC/quadrotor/booz2_g1.xml deleted file mode 100644 index ff1d0e2754..0000000000 --- a/conf/airframes/ENAC/quadrotor/booz2_g1.xml +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - -
- -
- - - - - - - - - -
- - -
- - - - - - - - -
- -
- -
- -
- - - -
- -
- -
- -
- - - - -
- -
- - - - -
- -
- - - - -
- -
- - - -
- -
- - - - -
- -
diff --git a/conf/airframes/OPENUAS/openuas_graupner_taxi_iii.xml b/conf/airframes/OPENUAS/openuas_graupner_taxi_iii.xml deleted file mode 100644 index 83c127c9d2..0000000000 --- a/conf/airframes/OPENUAS/openuas_graupner_taxi_iii.xml +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - -
- - -
- - - - - - - - -
- - -
- - - - - -
- - -
- - -
- -
- - -
- - -
- -
- -
diff --git a/conf/airframes/OPENUAS/openuas_moksha.xml b/conf/airframes/OPENUAS/openuas_moksha.xml deleted file mode 100644 index 8c43cd554f..0000000000 --- a/conf/airframes/OPENUAS/openuas_moksha.xml +++ /dev/null @@ -1,586 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
- - - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
- - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
- -
- - -
- - - -
- -
- -
- - -
diff --git a/conf/airframes/OPENUAS/openuas_own_moksha.xml b/conf/airframes/OPENUAS/openuas_own_moksha.xml deleted file mode 100644 index 058ddc4894..0000000000 --- a/conf/airframes/OPENUAS/openuas_own_moksha.xml +++ /dev/null @@ -1,585 +0,0 @@ - - - - Modified Multiplex Xeno (http://www.multiplex-rc.de/) - TWOG1 (http://paparazziuav.org/wiki/index.php/) - With modified power routing by a cut PCB trace - - DEVICES: - * CHIMU on SPI - * XBee XSC 868/900Mhz - * uBlox LEA5H and Sarantel helix GPS antenna flat in wing - * Eagletree Airspeed sensor via I2C - * Eagletree Height (Baro) sensor via I2C - * Current sensor on analog port - * RPM sensor for brushless measurments on ESC - * Tilted Infrared sensor for X,Y,Z still on board for fun to compare with CHIIMU values, not for attitude in AP mode - * OpenRXSR receiver set to CPPM out - - - BUILDLINE - make -C $PAPARAZZI_HOME -f Makefile.ac AIRCRAFT=Moksha ap.compile - - NOTES: - To ins_chimu_spi.c modified a line to this one below, since somehow roll and pitch setting where not getting through correctly: - - EstimatorSetAtt(CHIMU_DATA.m_attitude.euler.phi+ins_roll_neutral, CHIMU_DATA.m_attitude.euler.psi, CHIMU_DATA.m_attitude.euler.theta+ins_pitch_neutral); - - To test the "hatch" function we use bright lights, easy to spot from the - ground, e.g for a droptest without dropping a thing... - Ofcourse, also the log will show where a payload would have been released - but lights are much more fun, and good for instant human feedback without the payload retrieval walk. - - NOTES: - + Using Total Energy control as control loop - + Make sure v5.14 or master of PPRZ sourcecode is used - + Used mac06a.xml airframe as starting point for payload release settings - - WIP: - + Current sensor on battery wires going to motor - + geo_mag module fixedwing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
- - - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
- - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
- -
- - -
- - - -
- -
- -
- - -
diff --git a/conf/airframes/PPZUAV/fixed-wing/ppzimu_tiny.xml b/conf/airframes/PPZUAV/fixed-wing/ppzimu_tiny.xml deleted file mode 100644 index a32938be62..0000000000 --- a/conf/airframes/PPZUAV/fixed-wing/ppzimu_tiny.xml +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - -
- -
- - - - - -
- -
- - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/conf/airframes/examples/Twinstar_energyadaptive.xml b/conf/airframes/examples/Twinstar_energyadaptive.xml deleted file mode 100644 index 4fbb378b7d..0000000000 --- a/conf/airframes/examples/Twinstar_energyadaptive.xml +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - -
- - -
- -
- - -
- - - -
- - -
- -
- - - - - - - - - - -
- -
- - - - - -
- -
- - - - - - - - - - - - - -
- -
- - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - -
- -
- - -
- -
- - - - - -
- -
- - - - -
-
diff --git a/conf/airframes/examples/booz2.xml b/conf/airframes/examples/booz2.xml deleted file mode 100644 index 960af56265..0000000000 --- a/conf/airframes/examples/booz2.xml +++ /dev/null @@ -1,193 +0,0 @@ - - - - -
- - -
- - - - - - - - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
- -
- -
- -
- - - -
- -
- -
- -
- - - -
- - - - - - - - - - - - - - - - - - - -
diff --git a/conf/airframes/examples/easystar_ets.xml b/conf/airframes/examples/easystar_ets.xml deleted file mode 100644 index 4df3ef533a..0000000000 --- a/conf/airframes/examples/easystar_ets.xml +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - -
- -
- - - - - -
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
- - - -
- -
diff --git a/conf/airframes/examples/logomatic.xml b/conf/airframes/examples/logomatic.xml deleted file mode 100644 index 18e41ef4d8..0000000000 --- a/conf/airframes/examples/logomatic.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/conf/airframes/examples/microjet.xml b/conf/airframes/examples/microjet.xml deleted file mode 100644 index b06480e084..0000000000 --- a/conf/airframes/examples/microjet.xml +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - - -
- -
- - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- -
- -
- - - - - - - - -
diff --git a/conf/airframes/examples/microjet_twog_aspirin.xml b/conf/airframes/examples/microjet_twog_aspirin.xml deleted file mode 100644 index 81b36cc47c..0000000000 --- a/conf/airframes/examples/microjet_twog_aspirin.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - - - - - - - - - - -
- -
- - - - -
- -
- - -
- -
- - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - - - -
- -
- - -
- -
- - - - - -
- -
- - - - - -
- -
diff --git a/conf/airframes/examples/quadrotor_hbmini.xml b/conf/airframes/examples/quadrotor_hbmini.xml deleted file mode 100644 index 18d39fb254..0000000000 --- a/conf/airframes/examples/quadrotor_hbmini.xml +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
- -
- - - - - - - -
- -
- - - - -
- - -
- - - - -
- -
- -
- -
- -
- -
- - - -
- -
- - - - - -
- -
diff --git a/conf/airframes/examples/quadrotor_navgo.xml b/conf/airframes/examples/quadrotor_navgo.xml deleted file mode 100644 index 297e3f7c0b..0000000000 --- a/conf/airframes/examples/quadrotor_navgo.xml +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - -
- -
- - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
- -
- - - - - - - -
- -
- -
- -
- - - - -
- -
- -
- -
- -
- -
- -
- -
- - - - - -
- -
- -
- -
- - - - -
- -
- - - -
- -
diff --git a/conf/airframes/examples/twinjet.xml b/conf/airframes/examples/twinjet.xml deleted file mode 100644 index e6132766d0..0000000000 --- a/conf/airframes/examples/twinjet.xml +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -
- - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - - - - - - -
- - - -
- - -
- -
- - - - -
- -
- - - -
- -
- - - - - -
- -
- - - - - - - - -
- -
diff --git a/conf/airframes/examples/twog_analogimu.xml b/conf/airframes/examples/twog_analogimu.xml deleted file mode 100644 index 6a9f48d895..0000000000 --- a/conf/airframes/examples/twog_analogimu.xml +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- - - -
- - -
- - -
- - - - - - - - -
- -
- -
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/conf/airframes/examples/umarim_lite_v2.xml b/conf/airframes/examples/umarim_lite_v2.xml deleted file mode 100644 index 04fb978864..0000000000 --- a/conf/airframes/examples/umarim_lite_v2.xml +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - -
- -
- - - - -
- -
- - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - - - - -
- -
diff --git a/conf/airframes/examples/yapaChimuSpi.xml b/conf/airframes/examples/yapaChimuSpi.xml deleted file mode 100644 index ef5cef03cd..0000000000 --- a/conf/airframes/examples/yapaChimuSpi.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
- - -
- -
- - -
- -
- - - - - -
- -
- - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- -
- - - - - - - -
- -
- - -
- -
diff --git a/conf/airframes/tudelft/yapa_xsens.xml b/conf/airframes/tudelft/yapa_xsens.xml deleted file mode 100644 index 7fcea5fd20..0000000000 --- a/conf/airframes/tudelft/yapa_xsens.xml +++ /dev/null @@ -1,209 +0,0 @@ - - - - -YAPA + XSens + XBee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- -
- - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
- - - - - - -
- - - -
- - - -
- -
- - -
- -
- - - -
- - - -
- - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
- - - -
- - - -
- -
- - - - - - - -
- -
- - -
-
diff --git a/conf/airframes/untested/delta_wing_minimal.xml b/conf/airframes/untested/delta_wing_minimal.xml deleted file mode 100644 index 03ee569092..0000000000 --- a/conf/airframes/untested/delta_wing_minimal.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - -
- -
- -
- -
- - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
- -
- -
- -
- - - - - -
- -
- -
- -
diff --git a/conf/airframes/untested/demo.xml b/conf/airframes/untested/demo.xml deleted file mode 100644 index e8aad75698..0000000000 --- a/conf/airframes/untested/demo.xml +++ /dev/null @@ -1,150 +0,0 @@ - - - - -ARCH=lpc21 - -FLASH_MODE = IAP - - -# -# simple emtpy demo -# -demo1.ARCHDIR = $(ARCH) - -demo1.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -demo1.srcs = main_demo1.c - -# -# hardware init ( pll ), system time and LEDs -# -demo2.ARCHDIR = $(ARCH) - -demo2.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -demo2.srcs = main_demo2.c - -demo2.CFLAGS += -DPERIODIC_FREQUENCY='100.' -demo2.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -demo2.CFLAGS += -DUSE_LED - -# -# UART (interrupts) and formated ascii printing -# -demo3.ARCHDIR = $(ARCH) - -demo3.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -demo3.srcs = main_demo3.c - -demo3.CFLAGS += -DPERIODIC_FREQUENCY='10.' -demo3.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -demo3.CFLAGS += -DUSE_LED - -demo3.srcs += $(SRC_ARCH)/armVIC.c - -demo3.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B38400 -demo3.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c - -# -# DOWNLINK : send formated messages according to messages.xml description -# requires "link" to run on the other side of the serial link -# -demo4.ARCHDIR = $(ARCH) - -demo4.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -demo4.srcs = main_demo4.c - -demo4.CFLAGS += -DPERIODIC_FREQUENCY='100.' -demo4.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -demo4.CFLAGS += -DUSE_LED - -demo4.srcs += $(SRC_ARCH)/armVIC.c - -demo4.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B38400 -demo4.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c - -demo4.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=uart0 -demo4.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - -# -# DATALINK : receives datalink messages. demonstrates the "settings" service -# which lets you adjust variables described in the settings.xml file -# IvySendMsg("1ME RAW_DATALINK 144 SETTING;0;0;%d", foo_value); -# -demo5.ARCHDIR = $(ARCH) - -demo5.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -demo5.srcs = main_demo5.c - -demo5.CFLAGS += -DPERIODIC_FREQUENCY='100.' -demo5.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -demo5.CFLAGS += -DUSE_LED - -demo5.srcs += $(SRC_ARCH)/armVIC.c - -demo5.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B38400 -demo5.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c - -demo5.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=uart0 -demo5.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - -demo5.CFLAGS += -DDATALINK=PPRZ -DPPRZ_UART=uart0 - - -# -# Serial link over USB -# -demo6.ARCHDIR = $(ARCH) - -demo6.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -demo6.srcs = main_demo6.c - -demo6.CFLAGS += -DPERIODIC_FREQUENCY='100.' -demo6.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -demo6.CFLAGS += -DUSE_LED - -demo6.srcs += $(SRC_ARCH)/armVIC.c - -demo6.CFLAGS += -DUSE_USB_SERIAL -#demo6.LDFLAGS += -L$(SRC_ARCH)/lpcusb -lusbstack -demo6.srcs += $(SRC_ARCH)/lpcusb/usbhw_lpc.c $(SRC_ARCH)/lpcusb/usbcontrol.c $(SRC_ARCH)/lpcusb/usbstdreq.c $(SRC_ARCH)/lpcusb/usbinit.c -demo6.srcs += $(SRC_ARCH)/usb_ser_hw.c - -demo6.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=usb_serial -demo6.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - -//demo6.CFLAGS += -DDATALINK=PPRZ -DPPRZ_UART=uart0 - - - -# -# -# -test_spk.ARCHDIR = $(ARCH) - -test_spk.CFLAGS += -DBOARD_CONFIG=\"booz2_board_usb.h\" -test_spk.srcs = main_test_spk.c - -test_spk.CFLAGS += -DPERIODIC_FREQUENCY='512.' -test_spk.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -test_spk.CFLAGS += -DUSE_LED - -test_spk.srcs += $(SRC_ARCH)/armVIC.c - -test_spk.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DUSE_USB_SERIAL -test_spk.CFLAGS += -DDOWNLINK_DEVICE=usb_serial -DPPRZ_UART=usb_serial -DDATALINK=PPRZ -test_spk.srcs += modules/datalink/downlink.c $(SRC_ARCH)/usb_ser_hw.c modules/datalink/pprz_transport.c -test_spk.srcs += $(SRC_ARCH)/lpcusb/usbhw_lpc.c $(SRC_ARCH)/lpcusb/usbcontrol.c -test_spk.srcs += $(SRC_ARCH)/lpcusb/usbstdreq.c $(SRC_ARCH)/lpcusb/usbinit.c - -test_spk.CFLAGS += -DUSE_UART1 -DUART1_BAUD=B115200 -test_spk.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c - - - - diff --git a/conf/airframes/untested/easy_glider.xml b/conf/airframes/untested/easy_glider.xml deleted file mode 100644 index 864a239f11..0000000000 --- a/conf/airframes/untested/easy_glider.xml +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - -
- - - - - - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/conf/airframes/untested/easystar.xml b/conf/airframes/untested/easystar.xml deleted file mode 100644 index 6193716f75..0000000000 --- a/conf/airframes/untested/easystar.xml +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - -
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
diff --git a/conf/airframes/untested/funjet.xml b/conf/airframes/untested/funjet.xml deleted file mode 100644 index 6fab6a4e55..0000000000 --- a/conf/airframes/untested/funjet.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
- -
- -
diff --git a/conf/airframes/untested/funjet_cam.xml b/conf/airframes/untested/funjet_cam.xml deleted file mode 100644 index 8ba7e5d214..0000000000 --- a/conf/airframes/untested/funjet_cam.xml +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
- -
- -
diff --git a/conf/airframes/untested/logger_sd.xml b/conf/airframes/untested/logger_sd.xml deleted file mode 100644 index f4f63de1b0..0000000000 --- a/conf/airframes/untested/logger_sd.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/conf/airframes/untested/turntable.xml b/conf/airframes/untested/turntable.xml deleted file mode 100644 index 208901a6b0..0000000000 --- a/conf/airframes/untested/turntable.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - -ARCH=lpc21 - -FLASH_MODE = IAP - -MB=firmwares/motor_bench - -main.ARCHDIR = $(ARCH) - -# uncomment the next line to set the number of steps the encoder has (default 256) -#main.CFLAGS += -DNB_STEP=256 - -main.CFLAGS += -DBOARD_CONFIG=\"boards/olimex_lpc_h2148.h\" -I$(MB) -main.CFLAGS += -DPERIPHERALS_AUTO_INIT -main.srcs = $(MB)/main_turntable.c -main.srcs += $(SRC_ARCH)/armVIC.c -main.srcs += mcu.c -main.srcs += $(SRC_ARCH)/mcu_arch.c - -main.CFLAGS += -DUSE_LED -main.CFLAGS += -DPERIODIC_FREQUENCY='512.' -DSYS_TIME_LED=1 -main.srcs += mcu_periph/sys_time.c $(MB)/turntable_systime.c - -main.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B115200 -main.srcs += mcu_periph/uart.c -main.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c -main.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=uart0 - -main.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - - - - diff --git a/conf/airframes/untested/turntable_usb.xml b/conf/airframes/untested/turntable_usb.xml deleted file mode 100644 index fe70290499..0000000000 --- a/conf/airframes/untested/turntable_usb.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - -ARCH=lpc21 - -FLASH_MODE = IAP - -MB=firmwares/motor_bench - -main.ARCHDIR = $(ARCH) - -# uncomment the next line to set the number of steps the encoder has (default 256) -#main.CFLAGS += -DNB_STEP=256 - -main.CFLAGS += -DBOARD_CONFIG=\"boards/olimex_lpc_h2148.h\" -I$(MB) -main.CFLAGS += -DPERIPHERALS_AUTO_INIT -main.srcs = $(MB)/main_turntable.c -main.srcs += $(SRC_ARCH)/armVIC.c -main.srcs += mcu.c -main.srcs += $(SRC_ARCH)/mcu_arch.c - -main.CFLAGS += -DUSE_LED -main.CFLAGS += -DPERIODIC_FREQUENCY='512.' -DSYS_TIME_LED=1 -main.srcs += mcu_periph/sys_time.c $(MB)/turntable_systime.c - -main.CFLAGS += -DUSE_USB_SERIAL -main.srcs += $(SRC_ARCH)/usb_ser_hw.c -main.srcs += $(SRC_ARCH)/lpcusb/usbhw_lpc.c $(SRC_ARCH)/lpcusb/usbinit.c -main.srcs += $(SRC_ARCH)/lpcusb/usbcontrol.c $(SRC_ARCH)/lpcusb/usbstdreq.c -main.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=usb_serial - -main.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - - - - diff --git a/conf/airframes/untested/twinjet_overo.xml b/conf/airframes/untested/twinjet_overo.xml deleted file mode 100644 index 47f0365970..0000000000 --- a/conf/airframes/untested/twinjet_overo.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - -
- - -
- - - - - - - - - - - - - - - - - -
- - - -
- - -
- -
- - - - -
- -
- - - -
- -
- - - - - -
- -
- - - - - - - - -
- -
diff --git a/conf/airframes/untested/twinstar.xml b/conf/airframes/untested/twinstar.xml deleted file mode 100644 index 4c9506894b..0000000000 --- a/conf/airframes/untested/twinstar.xml +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - -
- - -
- -
- - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -
- - - - - - - - - -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
- -
- -
- -
- - - - - - - - -
- -
- - - - - -
- -
diff --git a/conf/airframes/untested/wind_tunnel.xml b/conf/airframes/untested/wind_tunnel.xml deleted file mode 100644 index af1a7773e0..0000000000 --- a/conf/airframes/untested/wind_tunnel.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - -ARCH=lpc21 - -FLASH_MODE = IAP - - -WIND_TUNNEL=wind_tunnel - -ap.ARCHDIR = $(ARCH) - -ap.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -I$(WIND_TUNNEL) -ap.srcs = $(WIND_TUNNEL)/main.c - -ap.CFLAGS += -DPERIODIC_FREQUENCY='10.' -ap.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -ap.CFLAGS += -DUSE_LED - -ap.srcs += $(SRC_ARCH)/armVIC.c - -ap.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B38400 -ap.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c - -ap.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=uart0 -ap.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - -ap.CFLAGS += -DDATALINK=PPRZ -DPPRZ_UART=uart0 -#ap.srcs += $(BOOZ)/booz_datalink.c - -ap.srcs += $(WIND_TUNNEL)/wt_servo.c - - -# -# -# - -MB=motor_bench - -mb.ARCHDIR = $(ARCH) - -mb.CFLAGS += -DBOARD_CONFIG=\"conf_demo.h\" -I$(WIND_TUNNEL) -I$(MB) -mb.srcs = $(WIND_TUNNEL)/main_mb.c - -mb.CFLAGS += -DPERIODIC_FREQUENCY='100.' -mb.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c - -mb.CFLAGS += -DUSE_LED - -mb.srcs += $(SRC_ARCH)/armVIC.c - -mb.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B38400 -mb.srcs += $(SRC_ARCH)/mcu_periph/uart_arch.c - -mb.CFLAGS += -DDOWNLINK -DDOWNLINK_TRANSPORT=PprzTransport -DDOWNLINK_DEVICE=uart0 -mb.srcs += modules/datalink/downlink.c modules/datalink/pprz_transport.c - -mb.CFLAGS += -DDATALINK=PPRZ -DPPRZ_UART=uart0 - -mb.srcs += $(WIND_TUNNEL)/wt_servo.c - -mb.CFLAGS += -DUSE_TWI_CONTROLLER -mb.CFLAGS += -DI2C_SCLL=100 -DI2C_SCLH=100 -mb.srcs += i2c.c $(SRC_ARCH)/i2c_hw.c $(MB)/mb_twi_controller_mkk.c - -mb.CFLAGS += -DMB_TACHO -mb.srcs += $(MB)/mb_tacho.c - -#mb.CFLAGS += -DADC -DUSE_ADC_0 -DUSE_ADC_1 -#mb.srcs += $(SRC_ARCH)/adc_hw.c -#mb.srcs += $(MB)/mb_current.c - - - - - - - - diff --git a/conf/boards/booz_1.0.makefile b/conf/boards/booz_1.0.makefile deleted file mode 100644 index 3593821abf..0000000000 --- a/conf/boards/booz_1.0.makefile +++ /dev/null @@ -1,36 +0,0 @@ -# -# booz_1.0.makefile -# -# http://wiki.paparazziuav.org/wiki/Booz -# -ARCH=lpc21 -BOARD=booz -BOARD_VERSION=1.0 -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -FLASH_MODE ?= IAP - -# -# -# some default values shared between different firmwares -# -# - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= 1 -BARO_LED ?= 2 -AHRS_ALIGNER_LED ?= 3 -GPS_LED ?= 4 -SYS_TIME_LED ?= none - -RADIO_CONTROL_LINK = UART0 - - -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - diff --git a/conf/boards/hb_1.1.makefile b/conf/boards/hb_1.1.makefile deleted file mode 100644 index 1ef9841ffe..0000000000 --- a/conf/boards/hb_1.1.makefile +++ /dev/null @@ -1,41 +0,0 @@ -# -# hb_1.1.makefile -# -# http://wiki.paparazziuav.org/wiki/HB_v1 -# -ARCH=lpc21 -BOARD=hb -BOARD_VERSION=1.1 -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -FLASH_MODE ?= IAP - -# -# -# some default values shared between different firmwares -# -# - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= 1 - - -RADIO_CONTROL_LINK = UART0 - -# -# default UART configuration -# -MODEM_PORT ?= UART0 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART1 -GPS_BAUD ?= B38400 - - -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/hbmini_1.0.makefile b/conf/boards/hbmini_1.0.makefile deleted file mode 100644 index aecc487225..0000000000 --- a/conf/boards/hbmini_1.0.makefile +++ /dev/null @@ -1,42 +0,0 @@ -# -# hbmini_1.0.makefile -# -# prototype for HBMini board -# - -ARCH=lpc21 - -BOARD=hbmini -BOARD_VERSION=1.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= none -SYS_TIME_LED ?= none - - -# -# default uart settings -# -MODEM_PORT ?= UART0 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART1 -GPS_BAUD ?= B38400 - -# All targets on the HBMini board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) - diff --git a/conf/boards/logom_2.6.makefile b/conf/boards/logom_2.6.makefile deleted file mode 100644 index 660b944cec..0000000000 --- a/conf/boards/logom_2.6.makefile +++ /dev/null @@ -1,23 +0,0 @@ -# -# logom_2.6.makefile -# -# http://www.sparkfun.com/products/10216 -# - -ARCH=lpc21 - -BOARD=logom -BOARD_VERSION=2.6 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - - -# All targets on the board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) - diff --git a/conf/boards/navgo_1.0.makefile b/conf/boards/navgo_1.0.makefile deleted file mode 100644 index ca00d8f785..0000000000 --- a/conf/boards/navgo_1.0.makefile +++ /dev/null @@ -1,42 +0,0 @@ -# -# navgo_1.0.makefile -# -# prototype for NavGo board -# - -ARCH=lpc21 - -BOARD=navgo -BOARD_VERSION=1.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= 1 -BARO_LED ?= 2 -AHRS_ALIGNER_LED ?= 3 -GPS_LED ?= 4 -SYS_TIME_LED ?= none - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - -# All targets on the NavGo board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) - diff --git a/conf/boards/sdlog_1.0.makefile b/conf/boards/sdlog_1.0.makefile deleted file mode 100644 index ea9f99cc0d..0000000000 --- a/conf/boards/sdlog_1.0.makefile +++ /dev/null @@ -1,13 +0,0 @@ -# -# sdlog_1.0.makefile -# -# Paparazzi SD Logger -# - - -include $(PAPARAZZI_SRC)/conf/boards/tiny_2.11.makefile - -BOARD=sdlog -BOARD_VERSION=1.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" diff --git a/conf/boards/tiny_0.99.makefile b/conf/boards/tiny_0.99.makefile deleted file mode 100644 index f5a2b42af6..0000000000 --- a/conf/boards/tiny_0.99.makefile +++ /dev/null @@ -1,49 +0,0 @@ -# -# tiny_0.99.makefile -# -# http://wiki.paparazziuav.org/wiki/Tiny_v0.99 -# - -ARCH=lpc21 - -BOARD=tiny -BOARD_VERSION=0.99 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= none -SYS_TIME_LED ?= none - - -# -# default uart settings -# -MODEM_PORT ?= UART0 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART1 -GPS_BAUD ?= B38400 - - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4015 - -# All targets on the TINY board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/tiny_1.1.makefile b/conf/boards/tiny_1.1.makefile deleted file mode 100644 index 31ac33fb95..0000000000 --- a/conf/boards/tiny_1.1.makefile +++ /dev/null @@ -1,53 +0,0 @@ -# -# tiny_1.1.makefile -# -# http://wiki.paparazziuav.org/wiki/Tiny_v1.1 -# -ARCH=lpc21 - - -BOARD=tiny -BOARD_VERSION=1.1 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= none -SYS_TIME_LED ?= none - -TUNNEL_RX_LED ?= 1 -TUNNEL_TX_LED ?= 2 - - -# -# default uart settings -# -MODEM_PORT ?= UART0 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART1 -GPS_BAUD ?= B38400 - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4015 - - -# All targets on the TINY board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/tiny_2.1.makefile b/conf/boards/tiny_2.1.makefile deleted file mode 100644 index fbf0a72706..0000000000 --- a/conf/boards/tiny_2.1.makefile +++ /dev/null @@ -1,49 +0,0 @@ -# -# tiny_2.1.makefile -# -# http://wiki.paparazziuav.org/wiki/Tiny_v2 -# - -ARCH=lpc21 - -BOARD=tiny -BOARD_VERSION=2.1 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= none - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4017 - -# All targets on the TINY board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/tiny_2.11.makefile b/conf/boards/tiny_2.11.makefile deleted file mode 100644 index c1138c440c..0000000000 --- a/conf/boards/tiny_2.11.makefile +++ /dev/null @@ -1,52 +0,0 @@ -# -# tiny_2.11.makefile -# -# http://wiki.paparazziuav.org/wiki/Tiny_v2 -# - -ARCH=lpc21 - -BOARD=tiny -BOARD_VERSION=2.11 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= none - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4017 - - -# All targets on the TINY board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/twog_1.0.makefile b/conf/boards/twog_1.0.makefile deleted file mode 100644 index e3bc637cf6..0000000000 --- a/conf/boards/twog_1.0.makefile +++ /dev/null @@ -1,50 +0,0 @@ -# -# twog_1.0.makefile -# -# http://wiki.paparazziuav.org/wiki/Twog_v1 -# - -ARCH=lpc21 - -BOARD=twog -BOARD_VERSION=1.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= none - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4017 - - -# All targets on the TINY board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/umarim_1.0.makefile b/conf/boards/umarim_1.0.makefile deleted file mode 100644 index 35cfe4c548..0000000000 --- a/conf/boards/umarim_1.0.makefile +++ /dev/null @@ -1,51 +0,0 @@ -# -# unami_1.0.makefile -# -# Umarim v1 board -# - -ARCH=lpc21 - -BOARD=umarim -BOARD_VERSION=1.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - - -# default flash mode is via usb bootloader -FLASH_MODE = IAP - - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= 1 - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4017 - -# All targets on the Umarim board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/umarim_lite_2.0.makefile b/conf/boards/umarim_lite_2.0.makefile deleted file mode 100644 index b5d08517cc..0000000000 --- a/conf/boards/umarim_lite_2.0.makefile +++ /dev/null @@ -1,49 +0,0 @@ -# -# umarim_lite_2.0.makefile -# -# Umarim Lite v2 board -# - -ARCH=lpc21 - -BOARD=umarim -BOARD_VERSION=lite_2.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= 1 - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4017 - -# All targets on the Umarim board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/boards/yapa_2.0.makefile b/conf/boards/yapa_2.0.makefile deleted file mode 100644 index 481b869435..0000000000 --- a/conf/boards/yapa_2.0.makefile +++ /dev/null @@ -1,48 +0,0 @@ -# -# yapa_2.0.makefile -# -# http://wiki.paparazziuav.org/wiki/YAPA/v2.0 -# - -ARCH=lpc21 - -BOARD=yapa -BOARD_VERSION=2.0 - -BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\" - -# default flash mode is via usb bootloader -FLASH_MODE ?= IAP - -LPC21ISP_BAUD = 38400 -LPC21ISP_XTAL = 12000 - -# -# default LED configuration -# -RADIO_CONTROL_LED ?= none -BARO_LED ?= none -AHRS_ALIGNER_LED ?= none -GPS_LED ?= 2 -SYS_TIME_LED ?= 1 - - -# -# default uart settings -# -MODEM_PORT ?= UART1 -MODEM_BAUD ?= B57600 - -GPS_PORT ?= UART0 -GPS_BAUD ?= B38400 - -# -# you can use different actuators by adding a configure option to your firmware section -# e.g. -# -ACTUATORS ?= actuators_4017 - -# All targets on the TINY board run on the same processor achitecture -$(TARGET).ARCHDIR = $(ARCH) diff --git a/conf/conf_example.xml b/conf/conf_example.xml index 2b82dfbeb0..e6e8993656 100644 --- a/conf/conf_example.xml +++ b/conf/conf_example.xml @@ -54,17 +54,6 @@ settings_modules="modules/digital_cam.xml modules/light.xml modules/gps_ubx_ucenter.xml modules/geo_mag.xml modules/air_data.xml modules/gps.xml modules/nav_basic_fw.xml modules/guidance_energy.xml modules/stabilization_attitude_fw.xml modules/ahrs_int_cmpl_quat.xml modules/imu_common.xml" gui_color="#ffffffffffff" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -25,20 +11,6 @@ - - - - - - - - - - - - - - diff --git a/conf/joystick/xbox_booz_nav.xml b/conf/joystick/xbox_booz_nav.xml deleted file mode 100644 index 0497aba173..0000000000 --- a/conf/joystick/xbox_booz_nav.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - -