diff options
| author | Keith Packard <keithp@keithp.com> | 2017-04-21 17:04:28 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-04-21 17:04:28 -0700 | 
| commit | 77c76e429074a53c1c5230a7b5e665d1715b296f (patch) | |
| tree | cddb24c69277020d1aff16690e0cba4ed0f75254 | |
| parent | adb842b64b04a7d70e543bad7ae59807d549e85a (diff) | |
altos/telemini-v3.0: Remove vestiges of the pre-USB code
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>
| -rw-r--r-- | src/telemini-v3.0/Makefile | 12 | 
1 files changed, 2 insertions, 10 deletions
| diff --git a/src/telemini-v3.0/Makefile b/src/telemini-v3.0/Makefile index 70c256f4..4713b3ad 100644 --- a/src/telemini-v3.0/Makefile +++ b/src/telemini-v3.0/Makefile @@ -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) | 
