mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-05 23:49:00 +08:00
4c3fb47be4
- actuators_direct is now actuators_pwm (consistency with file names)
131 lines
4.7 KiB
Makefile
131 lines
4.7 KiB
Makefile
#
|
|
# setup.makefile
|
|
#
|
|
#
|
|
|
|
|
|
CFG_SHARED=$(PAPARAZZI_SRC)/conf/firmwares/subsystems/shared
|
|
#CFG_SETUP=$(PAPARAZZI_SRC)/conf/firmwares/subsystems/setup
|
|
|
|
SRC_ARCH=arch/$(ARCH)
|
|
SRC_FIRMWARE=firmwares/setup
|
|
SRC_LISA=lisa
|
|
|
|
SETUP_INC = -I$(SRC_FIRMWARE)
|
|
|
|
$(TARGET).CFLAGS += -DBOARD_CONFIG=$(BOARD_CFG)
|
|
|
|
# a test program to tunnel between both uart
|
|
ifeq ($(ARCH), lpc21)
|
|
tunnel.CFLAGS += -DUSE_LED
|
|
tunnel.srcs += $(SRC_ARCH)/uart_tunnel.c
|
|
tunnel.srcs += mcu.c $(SRC_ARCH)/mcu_arch.c
|
|
else ifeq ($(ARCH), stm32)
|
|
tunnel.ARCHDIR = $(ARCH)
|
|
tunnel.CFLAGS += -I$(SRC_LISA) -I$(ARCH) -DPERIPHERALS_AUTO_INIT
|
|
tunnel.srcs += mcu.c \
|
|
$(SRC_ARCH)/mcu_arch.c \
|
|
$(SRC_LISA)/tunnel_hw.c
|
|
tunnel.CFLAGS += -DUSE_LED
|
|
tunnel.srcs += $(SRC_ARCH)/led_hw.c
|
|
ifneq ($(SYS_TIME_LED),none)
|
|
tunnel.CFLAGS += -DSYS_TIME_LED=$(SYS_TIME_LED)
|
|
endif
|
|
tunnel.CFLAGS += -DPERIODIC_FREQUENCY='512.'
|
|
tunnel.CFLAGS += -DUSE_SYS_TIME
|
|
tunnel.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c
|
|
endif
|
|
|
|
|
|
# for the usb_tunnel we need to set PCLK higher with the flag USE_USB_HIGH_PCLK
|
|
|
|
# a configuration program to access both uart through usb
|
|
ifeq ($(ARCH), lpc21)
|
|
usb_tunnel_0.CFLAGS += -DUSE_UART0 -DUART0_BAUD=B115200 -DPERIPHERALS_AUTO_INIT
|
|
usb_tunnel_0.CFLAGS += -DUSE_USB_LINE_CODING -DUSE_USB_SERIAL -DUSE_LED -DUSE_USB_HIGH_PCLK
|
|
usb_tunnel_0.srcs += $(SRC_ARCH)/usb_tunnel.c $(SRC_ARCH)/usb_ser_hw.c mcu_periph/uart.c $(SRC_ARCH)/mcu_periph/uart_arch.c
|
|
usb_tunnel_0.srcs += $(SRC_ARCH)/lpcusb/usbhw_lpc.c $(SRC_ARCH)/lpcusb/usbinit.c
|
|
usb_tunnel_0.srcs += $(SRC_ARCH)/lpcusb/usbcontrol.c $(SRC_ARCH)/lpcusb/usbstdreq.c
|
|
usb_tunnel_0.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c $(SRC_ARCH)/armVIC.c
|
|
usb_tunnel_0.srcs += mcu.c $(SRC_ARCH)/mcu_arch.c
|
|
|
|
usb_tunnel_1.CFLAGS += -DUSE_UART1 -DUART1_BAUD=B115200 -DPERIPHERALS_AUTO_INIT
|
|
usb_tunnel_1.CFLAGS += -DUSE_USB_LINE_CODING -DUSE_USB_SERIAL -DUSE_LED -DUSE_USB_HIGH_PCLK
|
|
usb_tunnel_1.srcs += $(SRC_ARCH)/usb_tunnel.c $(SRC_ARCH)/usb_ser_hw.c mcu_periph/uart.c $(SRC_ARCH)/mcu_periph/uart_arch.c
|
|
usb_tunnel_1.srcs += $(SRC_ARCH)/lpcusb/usbhw_lpc.c $(SRC_ARCH)/lpcusb/usbinit.c
|
|
usb_tunnel_1.srcs += $(SRC_ARCH)/lpcusb/usbcontrol.c $(SRC_ARCH)/lpcusb/usbstdreq.c
|
|
usb_tunnel_1.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c $(SRC_ARCH)/armVIC.c
|
|
usb_tunnel_1.srcs += mcu.c $(SRC_ARCH)/mcu_arch.c
|
|
else
|
|
ifeq ($(TARGET),usb_tunnel_0)
|
|
$(error usb_tunnel_0 currently only implemented for the lpc21)
|
|
else ifeq ($(TARGET),usb_tunnel_1)
|
|
$(error usb_tunnel_1 currently only implemented for the lpc21)
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET), setup_actuators)
|
|
ifeq ($(ACTUATORS),)
|
|
ifeq ($(BOARD),tiny)
|
|
ifeq ($(BOARD_VERSION),1.1)
|
|
include $(CFG_SHARED)/actuators_4015.makefile
|
|
else
|
|
ifeq ($(BOARD_VERSION),0.99)
|
|
include $(CFG_SHARED)/actuators_4015.makefile
|
|
else
|
|
include $(CFG_SHARED)/actuators_4017.makefile
|
|
endif
|
|
endif
|
|
endif
|
|
ifeq ($(BOARD),twog)
|
|
include $(CFG_SHARED)/actuators_4017.makefile
|
|
endif
|
|
|
|
ifeq ($(BOARD),lisa_l)
|
|
include $(CFG_SHARED)/actuators_pwm.makefile
|
|
endif
|
|
ifeq ($(BOARD),lisa_m)
|
|
include $(CFG_SHARED)/actuators_pwm.makefile
|
|
endif
|
|
|
|
else
|
|
include $(CFG_SHARED)/$(ACTUATORS).makefile
|
|
endif
|
|
endif
|
|
|
|
|
|
# a test program to setup actuators
|
|
setup_actuators.CFLAGS += -DFBW -DUSE_LED -DPERIPHERALS_AUTO_INIT
|
|
setup_actuators.CFLAGS += $(SETUP_INC) -Ifirmwares/fixedwing
|
|
setup_actuators.srcs += mcu.c $(SRC_ARCH)/mcu_arch.c
|
|
|
|
setup_actuators.CFLAGS += -DUSE_$(MODEM_PORT)
|
|
setup_actuators.CFLAGS += -D$(MODEM_PORT)_BAUD=$(MODEM_BAUD)
|
|
setup_actuators.srcs += mcu_periph/uart.c $(SRC_ARCH)/mcu_periph/uart_arch.c
|
|
|
|
setup_actuators.CFLAGS += -DDOWNLINK -DDOWNLINK_FBW_DEVICE=$(MODEM_PORT) -DDOWNLINK_AP_DEVICE=$(MODEM_PORT) -DPPRZ_UART=$(MODEM_PORT)
|
|
setup_actuators.CFLAGS += -DDOWNLINK_TRANSPORT=PprzTransport -DDATALINK=PPRZ
|
|
setup_actuators.srcs += subsystems/datalink/downlink.c subsystems/datalink/pprz_transport.c
|
|
ifneq ($(SYS_TIME_LED),none)
|
|
setup_actuators.CFLAGS += -DSYS_TIME_LED=$(SYS_TIME_LED)
|
|
endif
|
|
setup_actuators.CFLAGS += -DPERIODIC_FREQUENCY='60'
|
|
setup_actuators.CFLAGS += -DUSE_SYS_TIME
|
|
setup_actuators.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_arch.c
|
|
setup_actuators.srcs += $(SRC_FIRMWARE)/setup_actuators.c firmwares/fixedwing/main.c
|
|
|
|
ifeq ($(ARCH), lpc21)
|
|
setup_actuators.srcs += $(SRC_ARCH)/armVIC.c
|
|
else ifeq ($(ARCH), stm32)
|
|
setup_actuators.ARCHDIR = $(ARCH)
|
|
setup_actuators.CFLAGS += -I$(ARCH)
|
|
setup_actuators.srcs += $(SRC_ARCH)/led_hw.c
|
|
endif
|
|
|
|
# a test program for ABI
|
|
test_abi.CFLAGS += -DUSE_LED -DPERIPHERALS_AUTO_INIT
|
|
test_abi.srcs += mcu_periph/sys_time.c $(SRC_ARCH)/mcu_periph/sys_time_hw.c $(SRC_ARCH)/armVIC.c mcu.c $(SRC_ARCH)/mcu_arch.c
|
|
test_abi.srcs += test/test_abi.c
|