altos/telemini-v3.0: Remove vestiges of the pre-USB code
authorKeith Packard <keithp@keithp.com>
Sat, 22 Apr 2017 00:04:28 +0000 (17:04 -0700)
committerKeith Packard <keithp@keithp.com>
Sat, 22 Apr 2017 00:04:28 +0000 (17:04 -0700)
Pre-USB telemini v3 designs had a separate firmware load for radio
calibration. Now that we've got enough USB to perform flash/cal/test,
we don't need that other firmware load, so we can remove the remaining
Makefile remnants of the calibration load.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/telemini-v3.0/Makefile

index 70c256f44f350ac7cc670f427e3646b120fd5b6e..4713b3ad62eda719f4c1053dca664d3b74687fb9 100644 (file)
@@ -66,26 +66,18 @@ PROGNAME=telemini-v3.0
 PROG=$(PROGNAME)-$(VERSION).elf
 HEX=$(PROGNAME)-$(VERSION).ihx
 
-CAL_ELF=$(PROGNAME)-cal-$(VERSION).elf
-CAL_HEX=$(PROGNAME)-cal-$(VERSION).ihx
-
 SRC=$(ALTOS_SRC) ao_telemini.c
 OBJ=$(SRC:.c=.o)
 
 all: $(PROG) $(HEX)
 
-LDFLAGS=$(CFLAGS) -L$(TOPDIR)/stmf0 -Wl,-Taltos.ld
-
-$(PROG): Makefile $(OBJ) altos-raw.ld
+$(PROG): Makefile $(OBJ)
        $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)
 
-$(CAL_ELF):  Makefile $(OBJ_CAL) altos-raw.ld
-       $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(CAL_ELF) $(OBJ_CAL) $(LIBS)
-
 ao_product.h: ao-make-product.5c ../Version
        $(call quiet,NICKLE,$<) $< -m altusmetrum.org -i $(IDPRODUCT) -p $(PRODUCT) -v $(VERSION) > $@
 
-$(OBJ) $(OBJ_CAL): $(INC)
+$(OBJ): $(INC)
 
 load: $(PROG)
        lpc-load $(PROG)