2014-09-07 22:25:13 +02:00
|
|
|
#
|
2015-08-12 14:02:29 +02:00
|
|
|
# Copyright (c) 2015, The LibrePilot Project, http://www.librepilot.org
|
2014-09-07 22:25:13 +02:00
|
|
|
# Copyright (c) 2009-2013, The OpenPilot Team, http://www.openpilot.org
|
|
|
|
#
|
|
|
|
# This program 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 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2015-07-13 17:12:10 +02:00
|
|
|
ifndef TOP_LEVEL_MAKEFILE
|
2014-09-07 22:25:13 +02:00
|
|
|
$(error Top level Makefile must be used to build this target)
|
|
|
|
endif
|
|
|
|
|
2014-09-07 22:25:49 +02:00
|
|
|
PIOS_OMITS_USB = YES
|
|
|
|
PIOS_APPS_MINIMAL = YES
|
2014-09-07 22:25:13 +02:00
|
|
|
|
|
|
|
include ../board-info.mk
|
|
|
|
include $(ROOT_DIR)/make/firmware-defs.mk
|
2014-09-07 22:25:49 +02:00
|
|
|
|
|
|
|
## The standard CMSIS startup
|
|
|
|
SRC += $(CMSIS_DEVICEDIR)/system_stm32f0xx.c
|
2014-09-07 22:56:11 +02:00
|
|
|
SRC += $(FLIGHTLIB)/ssp.c
|
2014-09-07 23:00:00 +02:00
|
|
|
SRC += $(PIOSCOMMON)/pios_com.c
|
2014-09-07 22:56:11 +02:00
|
|
|
SRC += $(FLIGHTLIB)/fifo_buffer.c
|
|
|
|
|
2014-09-07 22:25:49 +02:00
|
|
|
|
|
|
|
|
2014-09-07 22:25:13 +02:00
|
|
|
include $(ROOT_DIR)/make/boot-defs.mk
|
|
|
|
include $(ROOT_DIR)/make/common-defs.mk
|
|
|
|
|