From: Keith Packard Date: Tue, 23 Apr 2019 13:45:54 +0000 (-0700) Subject: Add TeleStatic-v3.0 makefiles X-Git-Tag: 1.9.1~1^2~87 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=1d3a8443d8de832b8e76a005e56ac5ff09b71849 Add TeleStatic-v3.0 makefiles --- diff --git a/src/telestatic-v3.0/Makefile b/src/telestatic-v3.0/Makefile new file mode 100644 index 00000000..124b47fb --- /dev/null +++ b/src/telestatic-v3.0/Makefile @@ -0,0 +1,96 @@ +# +# TeleStatic build file +# + +include ../stm/Makefile.defs + +INC = \ + ao.h \ + ao_pins.h \ + ao_log.h \ + ao_arch.h \ + ao_arch_funcs.h \ + ao_pad.h \ + ao_product.h \ + ao_radio_spi.h \ + ao_radio_cmac.h \ + ao_cc1200_CC1200.h \ + ao_cc1200.h \ + stm32l.h +# +# Common AltOS sources +# + +#PROFILE=ao_profile.c +#PROFILE_DEF=-DAO_PROFILE=1 + +ALTOS_SRC = \ + ao_boot_chain.c \ + ao_interrupt.c \ + ao_product.c \ + ao_romconfig.c \ + ao_cmd.c \ + ao_adc_stm.c \ + ao_data.c \ + ao_config.c \ + ao_task.c \ + ao_led.c \ + ao_stdio.c \ + ao_panic.c \ + ao_timer.c \ + ao_mutex.c \ + ao_freq.c \ + ao_dma_stm.c \ + ao_spi_stm.c \ + ao_eeprom_stm.c \ + ao_storage.c \ + ao_m25.c \ + ao_usb_stm.c \ + ao_exti_stm.c \ + ao_cc1200.c \ + ao_radio_cmac.c \ + ao_aes.c \ + ao_aes_tables.c \ + ao_pad.c \ + ao_radio_cmac_cmd.c \ + ao_log.c \ + ao_log_telestatic.c \ + ao_max6691.c + +PRODUCT_SRC = \ + ao_telestatic.c + +PRODUCT=TeleStatic-v3.0 +PRODUCT_DEF=-DTELESTATIC_V_3_0 +IDPRODUCT=0x000f + +# Include floating-point enabled printf + +NEWLIB_PRINTF_CFLAGS = + +CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) + +PROGNAME = telestatic-v3.0 +PROG = $(PROGNAME)-$(VERSION).elf +HEX = $(PROGNAME)-$(VERSION).ihx + +SRC = $(ALTOS_SRC) $(PRODUCT_SRC) +OBJ=$(SRC:.c=.o) + +all: $(PROG) $(HEX) + +$(PROG): Makefile $(OBJ) altos.ld + $(call quiet,CC) $(LDFLAGS) -o $(PROG) $(OBJ) $(LIBS) + +$(OBJ): $(INC) + +distclean: clean + +clean: + rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx $(PROGNAME)-*.map + rm -f ao_product.h + +install: + +uninstall: + diff --git a/src/telestatic-v3.0/flash-loader/Makefile b/src/telestatic-v3.0/flash-loader/Makefile new file mode 100644 index 00000000..78993b48 --- /dev/null +++ b/src/telestatic-v3.0/flash-loader/Makefile @@ -0,0 +1,8 @@ +# +# AltOS flash loader build +# +# + +TOPDIR=../.. +HARDWARE=telestatic-v3.0 +include $(TOPDIR)/stm/Makefile-flash.defs