2014-01-24 04:05:30 -05:00
|
|
|
include ../py/mkenv.mk
|
2014-01-07 10:20:33 -05:00
|
|
|
|
2014-01-21 16:40:13 -05:00
|
|
|
# qstr definitions (must come before including py.mk)
|
|
|
|
QSTR_DEFS = qstrdefsport.h
|
|
|
|
|
2014-01-07 10:20:33 -05:00
|
|
|
# include py core make definitions
|
|
|
|
include ../py/py.mk
|
|
|
|
|
2014-01-26 12:41:01 -05:00
|
|
|
CMSIS_DIR=cmsis
|
|
|
|
STMPERIPH_DIR=stmperiph
|
|
|
|
STMUSB_DIR=stmusb
|
|
|
|
STMUSBD_DIR=stmusbd
|
|
|
|
STMUSBH_DIR=stmusbh
|
|
|
|
FATFS_DIR=fatfs
|
|
|
|
CC3K_DIR=cc3k
|
2013-12-20 07:07:50 -05:00
|
|
|
DFU=../tools/dfu.py
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2014-01-24 04:05:30 -05:00
|
|
|
CROSS_COMPILE = arm-none-eabi-
|
2014-01-08 12:07:29 -05:00
|
|
|
|
2014-01-21 17:32:51 -05:00
|
|
|
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion
|
2014-01-26 12:41:01 -05:00
|
|
|
CFLAGS = -I. -I$(PY_SRC) -I$(CMSIS_DIR) -I$(STMPERIPH_DIR) -I$(STMUSB_DIR) -Wall -ansi -std=gnu99 $(CFLAGS_CORTEX_M4)
|
|
|
|
CFLAGS += -I$(STMUSBD_DIR)
|
|
|
|
CFLAGS += -I$(STMUSBH_DIR)
|
|
|
|
CFLAGS += -I$(FATFS_DIR)
|
|
|
|
#CFLAGS += -I$(CC3K_DIR)
|
2014-01-09 06:42:18 -05:00
|
|
|
|
|
|
|
#Debugging/Optimization
|
|
|
|
ifeq ($(DEBUG), 1)
|
2014-01-09 06:45:29 -05:00
|
|
|
CFLAGS += -O0 -ggdb
|
2014-01-09 06:42:18 -05:00
|
|
|
else
|
2014-01-09 06:45:29 -05:00
|
|
|
CFLAGS += -Os -DNDEBUG
|
2014-01-09 06:42:18 -05:00
|
|
|
endif
|
|
|
|
|
2013-10-13 14:02:15 -04:00
|
|
|
LDFLAGS = --nostdlib -T stm32f405.ld
|
2014-01-21 18:28:03 -05:00
|
|
|
LIBS =
|
|
|
|
|
|
|
|
# uncomment this if you want libgcc
|
|
|
|
#LIBS += $(shell $(CC) -print-libgcc-file-name)
|
2013-10-12 19:42:20 -04:00
|
|
|
|
|
|
|
SRC_C = \
|
|
|
|
main.c \
|
|
|
|
printf.c \
|
|
|
|
system_stm32f4xx.c \
|
2013-11-30 10:02:11 -05:00
|
|
|
stm32fxxx_it.c \
|
|
|
|
string0.c \
|
|
|
|
malloc0.c \
|
|
|
|
systick.c \
|
2014-01-24 19:44:31 -05:00
|
|
|
gccollect.c \
|
2014-01-07 12:49:42 -05:00
|
|
|
lexerfatfs.c \
|
2013-10-18 18:44:05 -04:00
|
|
|
led.c \
|
2013-10-19 09:40:54 -04:00
|
|
|
lcd.c \
|
2013-12-21 13:17:45 -05:00
|
|
|
servo.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
flash.c \
|
2013-10-18 18:44:05 -04:00
|
|
|
storage.c \
|
2013-10-19 13:13:48 -04:00
|
|
|
mma.c \
|
2013-10-26 13:01:48 -04:00
|
|
|
usart.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
usb.c \
|
2013-11-06 18:04:33 -05:00
|
|
|
timer.c \
|
2013-11-04 18:05:48 -05:00
|
|
|
audio.c \
|
2013-11-30 10:02:11 -05:00
|
|
|
sdio.c \
|
2013-12-28 20:22:12 -05:00
|
|
|
i2c.c \
|
2014-01-05 07:52:37 -05:00
|
|
|
usrsw.c \
|
2014-01-14 12:57:51 -05:00
|
|
|
adc.c \
|
2014-01-23 06:49:06 -05:00
|
|
|
rtc.c \
|
2014-01-24 10:14:13 -05:00
|
|
|
file.c \
|
2014-01-21 18:28:03 -05:00
|
|
|
# pybwlan.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
|
|
|
|
SRC_S = \
|
|
|
|
startup_stm32f40xx.s \
|
2013-10-22 16:13:36 -04:00
|
|
|
gchelper.s \
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2014-01-26 12:41:01 -05:00
|
|
|
SRC_STMPERIPH = $(addprefix $(STMPERIPH_DIR)/,\
|
|
|
|
stm_misc.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
stm32f4xx_rcc.c \
|
2013-11-01 18:27:51 -04:00
|
|
|
stm32f4xx_syscfg.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
stm32f4xx_flash.c \
|
|
|
|
stm32f4xx_dma.c \
|
|
|
|
stm32f4xx_gpio.c \
|
2013-11-01 18:27:51 -04:00
|
|
|
stm32f4xx_exti.c \
|
2013-10-23 15:39:20 -04:00
|
|
|
stm32f4xx_tim.c \
|
2013-10-23 19:22:27 -04:00
|
|
|
stm32f4xx_sdio.c \
|
2013-10-25 21:06:37 -04:00
|
|
|
stm32f4xx_pwr.c \
|
|
|
|
stm32f4xx_rtc.c \
|
2013-10-26 13:01:48 -04:00
|
|
|
stm32f4xx_usart.c \
|
2013-11-01 18:27:51 -04:00
|
|
|
stm32f4xx_spi.c \
|
2013-11-04 18:05:48 -05:00
|
|
|
stm32f4xx_dac.c \
|
2013-11-09 15:15:17 -05:00
|
|
|
stm32f4xx_rng.c \
|
2014-01-19 12:40:35 -05:00
|
|
|
stm32f4xx_i2c.c \
|
2014-01-22 17:55:07 -05:00
|
|
|
stm32f4xx_adc.c \
|
|
|
|
stm324x7i_eval.c \
|
|
|
|
stm324x7i_eval_sdio_sd.c \
|
2014-01-26 12:41:01 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
SRC_STMUSB = $(addprefix $(STMUSB_DIR)/,\
|
2013-10-12 19:42:20 -04:00
|
|
|
usb_core.c \
|
2014-01-22 17:55:07 -05:00
|
|
|
usb_bsp.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
usb_dcd.c \
|
|
|
|
usb_dcd_int.c \
|
2014-01-26 12:41:01 -05:00
|
|
|
usb_hcd.c \
|
|
|
|
usb_hcd_int.c \
|
|
|
|
)
|
|
|
|
# usb_otg.c \
|
|
|
|
|
|
|
|
SRC_STMUSBD = $(addprefix $(STMUSBD_DIR)/,\
|
2013-10-12 19:42:20 -04:00
|
|
|
usbd_core.c \
|
|
|
|
usbd_ioreq.c \
|
|
|
|
usbd_req.c \
|
|
|
|
usbd_usr.c \
|
|
|
|
usbd_desc.c \
|
2013-10-13 14:02:15 -04:00
|
|
|
usbd_pyb_core.c \
|
2013-10-25 15:53:54 -04:00
|
|
|
usbd_pyb_core2.c \
|
2013-10-12 19:42:20 -04:00
|
|
|
usbd_cdc_vcp.c \
|
|
|
|
usbd_msc_bot.c \
|
|
|
|
usbd_msc_data.c \
|
|
|
|
usbd_msc_scsi.c \
|
|
|
|
usbd_storage_msd.c \
|
2014-01-24 04:05:30 -05:00
|
|
|
)
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2014-01-26 12:41:01 -05:00
|
|
|
SRC_STMUSBH = $(addprefix $(STMUSBH_DIR)/,\
|
2014-01-22 17:55:07 -05:00
|
|
|
usbh_core.c \
|
|
|
|
usbh_hcs.c \
|
|
|
|
usbh_stdreq.c \
|
|
|
|
usbh_ioreq.c \
|
|
|
|
usbh_usr.c \
|
|
|
|
usbh_hid_core.c \
|
|
|
|
usbh_hid_mouse.c \
|
|
|
|
usbh_hid_keybd.c \
|
2014-01-24 04:05:30 -05:00
|
|
|
)
|
2014-01-02 19:10:22 -05:00
|
|
|
|
2014-01-26 12:41:01 -05:00
|
|
|
SRC_FATFS = $(addprefix $(FATFS_DIR)/,\
|
|
|
|
ff.c \
|
|
|
|
diskio.c \
|
|
|
|
)
|
|
|
|
|
|
|
|
SRC_CC3K = $(addprefix $(CC3K_DIR)/,\
|
2013-12-05 15:38:23 -05:00
|
|
|
cc3000_common.c \
|
|
|
|
evnt_handler.c \
|
|
|
|
hci.c \
|
|
|
|
netapp.c \
|
|
|
|
nvmem.c \
|
|
|
|
security.c \
|
|
|
|
socket.c \
|
|
|
|
wlan.c \
|
|
|
|
ccspi.c \
|
|
|
|
pybcc3k.c \
|
2014-01-24 04:05:30 -05:00
|
|
|
)
|
2013-12-05 15:38:23 -05:00
|
|
|
|
2014-01-26 12:41:01 -05:00
|
|
|
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(SRC_S:.s=.o) $(SRC_STMPERIPH:.c=.o) $(SRC_STMUSB:.c=.o))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_STMUSBD:.c=.o))
|
|
|
|
#OBJ += $(addprefix $(BUILD)/, $(SRC_STMUSBH:.c=.o))
|
|
|
|
OBJ += $(addprefix $(BUILD)/, $(SRC_FATFS:.c=.o))
|
|
|
|
#OBJ += $(addprefix $(BUILD)/, $(SRC_CC3K:.c=.o))
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2014-01-30 17:16:51 -05:00
|
|
|
all: $(BUILD)/flash.dfu
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2013-10-18 18:44:05 -04:00
|
|
|
$(BUILD)/flash.dfu: $(BUILD)/flash0.bin $(BUILD)/flash1.bin
|
2014-01-08 13:15:39 -05:00
|
|
|
$(ECHO) "Create $@"
|
|
|
|
$(Q)python $(DFU) -b 0x08000000:$(BUILD)/flash0.bin -b 0x08020000:$(BUILD)/flash1.bin $@
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2013-10-18 18:44:05 -04:00
|
|
|
$(BUILD)/flash0.bin: $(BUILD)/flash.elf
|
2014-01-08 13:15:39 -05:00
|
|
|
$(Q)$(OBJCOPY) -O binary -j .isr_vector $^ $@
|
2013-10-18 18:44:05 -04:00
|
|
|
|
|
|
|
$(BUILD)/flash1.bin: $(BUILD)/flash.elf
|
2014-01-08 13:15:39 -05:00
|
|
|
$(Q)$(OBJCOPY) -O binary -j .text -j .data $^ $@
|
2013-10-12 19:42:20 -04:00
|
|
|
|
|
|
|
$(BUILD)/flash.elf: $(OBJ)
|
2014-01-08 13:15:39 -05:00
|
|
|
$(ECHO) "LINK $@"
|
2014-01-14 18:48:11 -05:00
|
|
|
$(Q)$(LD) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
|
2014-01-08 13:15:39 -05:00
|
|
|
$(Q)$(SIZE) $@
|
2013-10-12 19:42:20 -04:00
|
|
|
|
2014-01-24 04:05:30 -05:00
|
|
|
include ../py/mkrules.mk
|