Browse Source

Add make help for AVR_FREQ and SINGLESPEED

WestfW 6 years ago
parent
commit
a70f090eb9
1 changed files with 4 additions and 0 deletions
  1. 4 0
      optiboot/bootloaders/optiboot/Makefile

+ 4 - 0
optiboot/bootloaders/optiboot/Makefile

@@ -131,6 +131,9 @@ CC         = $(GCCROOT)avr-gcc
 
 
 # Override is only needed by avr-lib build system.
 # Override is only needed by avr-lib build system.
 
 
+HELPTEXT += "Option AVR_FREQ=<n>          - Clock rate of AVR CPU\n"
+
+
 override CFLAGS        = -g -Wall $(OPTIMIZE) -mmcu=$(MCU_TARGET) -DF_CPU=$(AVR_FREQ) $(DEFS)
 override CFLAGS        = -g -Wall $(OPTIMIZE) -mmcu=$(MCU_TARGET) -DF_CPU=$(AVR_FREQ) $(DEFS)
 override LDFLAGS       = $(LDSECTIONS) -Wl,--relax -nostartfiles
 override LDFLAGS       = $(LDSECTIONS) -Wl,--relax -nostartfiles
 
 
@@ -223,6 +226,7 @@ dummy = FORCE
 endif
 endif
 endif
 endif
 
 
+HELPTEXT += "Option SINGLESPEED=1         - do not use U2X mode on UART\n"
 ifdef SINGLESPEED
 ifdef SINGLESPEED
 ifneq ($(SINGLESPEED), 0)
 ifneq ($(SINGLESPEED), 0)
 SS_CMD = -DSINGLESPEED=1
 SS_CMD = -DSINGLESPEED=1