123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- # none sdkota espboot rboot
- OTA ?= none
- OTA_APP_ADDR = 0x2000
- OTA_BOOTLOADER_PATH = ../esp-bootloader/firmware/espboot.bin
- THISDIR:=$(dir $(abspath $(lastword $(MAKEFILE_LIST))))
- # Base directory for the compiler. Needs a / at the end; if not set it'll use the tools that are in
- # the PATH.
- XTENSA_TOOLS_ROOT ?=
- # base directory of the ESP8266 SDK package, absolute
- SDK_BASE ?= /home/curiousmuch/ideasX-repositories/esp8266/esp-open-sdk/sdk
- #Esptool.py path and port
- ESPTOOL ?= /home/curiousmuch/ideasX-repositories/esp8266/esp-open-sdk/esptool/esptool.py
- ESPPORT ?= /dev/ttyUSB0
- #ESPPORT ?= /dev/tty.wchusbserial1410
- #ESPDELAY indicates seconds to wait between flashing the two binary images
- ESPDELAY ?= 3
- #ESPBAUD ?= 115200
- ESPBAUD ?= 460800
- # 40m 26m 20m 80m
- ESP_FREQ = 40m
- # qio qout dio dout
- ESP_MODE = dio
- #4m 2m 8m 16m 32m
- ESP_SIZE = 32m
- VERBOSE = yes
- FLAVOR = debug
- # name for the target project
- TARGET ?= ideasX_
- # name for the target when compiling as library
- TARGET_LIB ?= ideasX.a
- # which modules (subdirectories) of the project to include in compiling
- USER_MODULES = user driver gdbstub log hal interface include mqtt
- USER_INC = include
- USER_LIB =
- # which modules (subdirectories) of the project to include when compiling as library
- LIB_MODULES = mqtt
- SDK_LIBDIR = lib
- SDK_LIBS = c gcc phy pp net80211 wpa main lwip crypto ssl json
- #SDK_LIBS = c gcc phy pp net80211 wpa main lwip crypto ssl json driver
- SDK_INC = include include/json
- # Output directors to store intermediate compiled files
- # relative to the project directory
- BUILD_BASE = build
- FIRMWARE_BASE = firmware
- # Opensdk patches stdint.h when compiled with an internal SDK. If you run into compile problems pertaining to
- # redefinition of int types, try setting this to 'yes'.
- USE_OPENSDK ?= yes
- DATETIME := $(shell date "+%Y-%b-%d_%H:%M:%S_%Z")
- # select which tools to use as compiler, librarian and linker
- CC := $(XTENSA_TOOLS_ROOT)xtensa-lx106-elf-gcc
- AR := $(XTENSA_TOOLS_ROOT)xtensa-lx106-elf-ar
- LD := $(XTENSA_TOOLS_ROOT)xtensa-lx106-elf-gcc
- OBJCOPY := $(XTENSA_TOOLS_ROOT)xtensa-lx106-elf-objcopy
- ####
- #### no user configurable options below here
- ####
- SRC_DIR := $(USER_MODULES)
- SRC_DIR_LIB := $(LIB_MODULES)
- BUILD_DIR := $(addprefix $(BUILD_BASE)/,$(USER_MODULES))
- INCDIR := $(addprefix -I,$(SRC_DIR))
- EXTRA_INCDIR := $(addprefix -I,$(USER_INC))
- MODULE_INCDIR := $(addsuffix /include,$(INCDIR))
- SDK_LIBDIR := $(addprefix $(SDK_BASE)/,$(SDK_LIBDIR))
- SDK_LIBS := $(addprefix -l,$(SDK_LIBS))
- SDK_INCDIR := $(addprefix -I$(SDK_BASE)/,$(SDK_INC))
- SRC := $(foreach sdir,$(SRC_DIR),$(wildcard $(sdir)/*.c))
- SRC_LIB := $(foreach sdir,$(SRC_DIR_LIB),$(wildcard $(sdir)/*.c))
- ASMSRC = $(foreach sdir,$(SRC_DIR),$(wildcard $(sdir)/*.S))
- ASMSRC_LIB = $(foreach sdir,$(SRC_DIR_LIB),$(wildcard $(sdir)/*.S))
- OBJ = $(patsubst %.c,$(BUILD_BASE)/%.o,$(SRC))
- OBJ_LIB = $(patsubst %.c,$(BUILD_BASE)/%.o,$(SRC_LIB))
- OBJ += $(patsubst %.S,$(BUILD_BASE)/%.o,$(ASMSRC))
- OBJ_LIB += $(patsubst %.c,$(BUILD_BASE)/%.o,$(ASMSRC_LIB))
- APP_AR := $(addprefix $(BUILD_BASE)/,$(TARGET).a)
- TARGET_OUT := $(addprefix $(BUILD_BASE)/,$(TARGET).out)
- # compiler flags using during compilation of source files
- CFLAGS = -g \
- -Wpointer-arith \
- -Wundef \
- -Wl,-EL \
- -Wno-implicit-function-declaration \
- -fno-inline-functions \
- -nostdlib \
- -mlongcalls \
- -mtext-section-literals \
- -ffunction-sections \
- -fdata-sections \
- -fno-builtin-printf\
- -DICACHE_FLASH \
- -DBUILD_TIME=\"$(DATETIME)\"
- # linker flags used to generate the main object file
- LDFLAGS = -nostdlib -Wl,--no-check-sections -u call_user_start -Wl,-static
- ifeq ($(FLAVOR),debug)
- LDFLAGS += -g -O2
- CFLAGS += -DMQTT_DEBUG_ON -DDEBUG_ON
- endif
- ifeq ($(FLAVOR),release)
- LDFLAGS += -g -O0
- endif
- V ?= $(VERBOSE)
- ifeq ("$(V)","yes")
- Q :=
- vecho := @true
- else
- Q := @
- vecho := @echo
- endif
- ifeq ("$(USE_OPENSDK)","yes")
- CFLAGS += -DUSE_OPENSDK
- else
- CFLAGS += -D_STDINT_Hlocal
- endif
- #ifneq ("$(wildcard $(THISDIR)/include/user_config.local.h)","")
- #CFLAGS += -DLOCAL_CONFIG_AVAILABLE
- #endif
- ESPTOOL_OPTS= --port $(ESPPORT) --baud $(ESPBAUD)
- #32m
- ESP_INIT_DATA_DEFAULT_ADDR = 0xfc000
- ifeq ("$(ESP_SIZE)","16m")
- ESP_INIT_DATA_DEFAULT_ADDR = 0x1fc000
- else ifeq ("$(ESP_SIZE)","32m")
- ESP_INIT_DATA_DEFAULT_ADDR = 0x3fc000
- endif
- ifeq ("$(OTA)","espboot")
- OUTPUT := $(addprefix $(FIRMWARE_BASE)/,$(TARGET)-0x2000.bin)
- ESPTOOL_WRITE = write_flash --flash_freq $(ESP_FREQ) --flash_mode $(ESP_MODE) --flash_size $(ESP_SIZE) \
- 0x00000 $(OTA_BOOTLOADER_PATH) \
- $(OTA_APP_ADDR) $(OUTPUT) \
- $(ESP_INIT_DATA_DEFAULT_ADDR) $(SDK_BASE)/bin/esp_init_data_default.bin
- ESPTOOL_FLASHDEF=--version=2
- LD_SCRIPT = -Tld/with-espboot-flash-at-0x2000-size-1M.ld
- else
- OUTPUT := $(addprefix $(FIRMWARE_BASE)/,$(TARGET))
- ESPTOOL_WRITE = write_flash --flash_freq $(ESP_FREQ) --flash_mode $(ESP_MODE) --flash_size $(ESP_SIZE) \
- 0x00000 $(OUTPUT)0x00000.bin \
- 0x10000 $(OUTPUT)0x10000.bin \
- $(ESP_INIT_DATA_DEFAULT_ADDR) $(SDK_BASE)/bin/esp_init_data_default.bin
- ESPTOOL_FLASHDEF=
- #LD_SCRIPT = -T$(SDK_BASE)/ld/eagle.app.v6.new.2048.ld
- LD_SCRIPT = -T$(SDK_BASE)/ld/eagle.app.v6.ld
- endif
- OUTPUT_LIB := $(addprefix $(FIRMWARE_BASE)/,$(TARGET_LIB))
- vpath %.c $(SRC_DIR)
- define compile-objects
- $1/%.o: %.c
- $(vecho) "CC $$<"
- $(Q) $(CC) $(INCDIR) $(MODULE_INCDIR) $(EXTRA_INCDIR) $(SDK_INCDIR) $(CFLAGS) -c $$< -o $$@
- endef
- .PHONY: all lib checkdirs clean
- all: touch checkdirs $(OUTPUT)
- lib: checkdirs $(OUTPUT_LIB)
- touch:
- $(vecho) "-------------------------------------------\n"
- $(vecho) "BUID TIME $(DATETIME)"
- $(vecho) "-------------------------------------------\n"
- $(Q) touch user/user_main.c
- checkdirs: $(BUILD_DIR) $(FIRMWARE_BASE)
- $(OUTPUT): $(TARGET_OUT)
- $(vecho) "FW $@"
- $(Q) python2 $(ESPTOOL) elf2image $(ESPTOOL_FLASHDEF) $< -o $(OUTPUT)
- $(OUTPUT_LIB): $(OBJ_LIB)
- $(vecho) "AR $@"
- $(Q) $(AR) cru $@ $^
- $(BUILD_DIR):
- $(Q) mkdir -p $@
- $(FIRMWARE_BASE):
- $(Q) mkdir -p $@
- $(TARGET_OUT): $(APP_AR)
- $(vecho) "LD $@"
- $(Q) $(LD) -L$(SDK_LIBDIR) $(LD_SCRIPT) $(LDFLAGS) -Wl,--start-group $(SDK_LIBS) $(APP_AR) -Wl,--end-group -o $@
- $(APP_AR): $(OBJ)
- $(vecho) "AR $@"
- $(Q) $(AR) cru $@ $^
- flash:
- python2 $(ESPTOOL) $(ESPTOOL_OPTS) $(ESPTOOL_WRITE)
- wipe:
- python2 $(ESPTOOL) $(ESPTOOL_OPTS) erase_flash
- fast: all flash openport
- openport:
- $(vecho) "After flash, terminal will enter serial port screen"
- $(vecho) "Please exit with command:"
- $(vecho) "\033[0;31m" "Ctrl + A + k" "\033[0m"
- #@read -p "Press any key to continue... " -n1 -s
- @screen $(ESPPORT) 115200
- clean:
- $(Q) rm -rf $(BUILD_DIR)
- $(Q) rm -rf $(FIRMWARE_BASE)
- $(foreach bdir,$(BUILD_DIR),$(eval $(call compile-objects,$(bdir))))
|