mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-09 15:39:08 +00:00
74 lines
2.6 KiB
Makefile
74 lines
2.6 KiB
Makefile
#
|
|
# Makefile for MSP-EXP430F5438 demo with ANT(tm) PAN1327/CC2567 Bluetooth module
|
|
#
|
|
# This demo requires the official init script for the CC2567 which is not publicly available.
|
|
# If you're interested in using BTstack with the CC2567 commercially, please contact us
|
|
# at: contact@bluekitchen-gmbh.com
|
|
#
|
|
# mspgcc is used: http://sourceforge.net/apps/mediawiki/mspgcc/index.php?title=MSPGCC_Wiki
|
|
#
|
|
|
|
BTSTACK_ROOT = ../..
|
|
|
|
CC = msp430-gcc
|
|
CFLAGS = -mmcu=msp430f5438a -Os -Wall -fno-toplevel-reorder -I. -I../src -I../firmware -I${BTSTACK_ROOT} -I${BTSTACK_ROOT}/chipset-cc256x -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include
|
|
LDFLAGS = -mmcu=msp430f5438a
|
|
|
|
CORE = \
|
|
../src/hal_tick.c \
|
|
../src/hal_cpu.c \
|
|
../firmware/hal_board.c \
|
|
../firmware/hal_compat.c \
|
|
../firmware/hal_usb.c \
|
|
${BTSTACK_ROOT}/src/btstack_memory.c \
|
|
${BTSTACK_ROOT}/src/linked_list.c \
|
|
${BTSTACK_ROOT}/src/memory_pool.c \
|
|
${BTSTACK_ROOT}/src/run_loop.c \
|
|
${BTSTACK_ROOT}/src/run_loop_embedded.c
|
|
|
|
COMMON = \
|
|
../src/hal_uart_dma.c \
|
|
${BTSTACK_ROOT}/chipset-cc256x/ant_cmds.c \
|
|
${BTSTACK_ROOT}/chipset-cc256x/bt_control_cc256x.c \
|
|
${BTSTACK_ROOT}/chipset-cc256x/bluetooth_init_cc2567_2.4.c \
|
|
${BTSTACK_ROOT}/src/hci.c \
|
|
${BTSTACK_ROOT}/src/hci_cmds.c \
|
|
${BTSTACK_ROOT}/src/hci_dump.c \
|
|
${BTSTACK_ROOT}/src/hci_transport_h4_ehcill_dma.c \
|
|
${BTSTACK_ROOT}/src/l2cap.c \
|
|
${BTSTACK_ROOT}/src/l2cap_signaling.c \
|
|
${BTSTACK_ROOT}/src/remote_device_db_memory.c \
|
|
${BTSTACK_ROOT}/src/rfcomm.c \
|
|
${BTSTACK_ROOT}/src/sdp.c \
|
|
${BTSTACK_ROOT}/src/sdp_util.c \
|
|
${BTSTACK_ROOT}/src/utils.c \
|
|
|
|
LCD = ../firmware/hal_lcd.c ../firmware/hal_lcd_fonts.c
|
|
|
|
|
|
CORE_OBJ = $(CORE:.c=.o)
|
|
COMMON_OBJ = $(COMMON:.c=.o)
|
|
LCD_OBJ = $(LCD:.c=.o)
|
|
|
|
# create .hex file from .out
|
|
%.hex: %.out
|
|
msp430-objcopy -O ihex $< $@
|
|
|
|
# create firmware image from common objects and example source file
|
|
|
|
all: ant-test.hex
|
|
|
|
ant-test.out: ${CORE_OBJ} ${COMMON_OBJ} ant-test.o
|
|
${CC} $^ ${LDFLAGS} -o $@
|
|
|
|
clean:
|
|
rm -f $ *.o *.out *.hex ../driver/*.o ../../src/*.o ../src/*.o ../firmware/*.o ${BTSTACK_ROOT}/chipset-cc256x/*.o ${BTSTACK_ROOT}/src/*.o
|
|
|
|
size: all
|
|
msp430-size ../firmware/*.o
|
|
msp430-size ../src/*.o
|
|
msp430-size ${BTSTACK_ROOT}/chipset-cc256x/*.o
|
|
msp430-size ${BTSTACK_ROOT}/src/*.o
|
|
msp430-size *.o
|
|
msp430-size *.out
|