2014-12-22 12:35:05 +01:00
|
|
|
#############################################################
|
|
|
|
# Required variables for each makefile
|
|
|
|
# Discard this section from all parent makefiles
|
|
|
|
# Expected variables (with automatic defaults):
|
|
|
|
# CSRCS (all "C" files in the dir)
|
|
|
|
# SUBDIRS (all subdirs with a Makefile)
|
|
|
|
# GEN_LIBS - list of libs to be generated ()
|
|
|
|
# GEN_IMAGES - list of object file images to be generated ()
|
|
|
|
# GEN_BINS - list of binaries to be generated ()
|
|
|
|
# COMPONENTS_xxx - a list of libs/objs in the form
|
|
|
|
# subdir/lib to be extracted and rolled up into
|
|
|
|
# a generated lib/image xxx.a ()
|
|
|
|
#
|
|
|
|
TARGET = eagle
|
|
|
|
#FLAVOR = release
|
|
|
|
FLAVOR = debug
|
|
|
|
|
|
|
|
#EXTRA_CCFLAGS += -u
|
|
|
|
|
|
|
|
ifndef PDIR # {
|
|
|
|
GEN_IMAGES= eagle.app.v6.out
|
|
|
|
GEN_BINS= eagle.app.v6.bin
|
|
|
|
SPECIAL_MKTARGETS=$(APP_MKTARGETS)
|
2015-06-18 11:36:27 +02:00
|
|
|
SUBDIRS= \
|
|
|
|
user \
|
|
|
|
driver \
|
|
|
|
json \
|
|
|
|
platform \
|
|
|
|
libc \
|
|
|
|
lua \
|
2015-10-09 06:32:59 +02:00
|
|
|
lwip \
|
2015-06-18 11:36:27 +02:00
|
|
|
coap \
|
|
|
|
mqtt \
|
Add New Tasking I/F and rework GPIO, UART, etc to support it
As with the last commit this rolls up the follwowing, but include the various
review comments on the PR.
- **Documentation changes**. I've added the taks FAQ as a stub new Extension
developer FAQ, and split the old FAQ into a Lua Developer FAQ and a Hardware
FAQ.
- **Tasking I/F**. New `app/task/Makefile`, `app/task/task.c`,
`app/include/task/task.h` and `app/Makefile` as per previous commit. Cascade
changes to `app/driver/uart.c`, `app/include/driver/uart.h`,
`app/user/user_main.c` and `app/modules/node.c`
- **GPIO Rework** to `app/modules/gpio.c` and `pin_map.[hc]`, `platform.[hc]`
in `app/platform`
- **Other Optimisations** Move the `platform_*_exists()` from
`app/platform/common.c` to static inline declarations in `platform.h` as
this generates faster, smaller code. Move lgc.a routines out of iram0.
2016-02-17 18:13:17 +01:00
|
|
|
task \
|
2015-06-18 11:36:27 +02:00
|
|
|
u8glib \
|
2015-08-05 00:47:34 +02:00
|
|
|
ucglib \
|
2015-06-18 11:36:27 +02:00
|
|
|
smart \
|
|
|
|
modules \
|
|
|
|
spiffs \
|
|
|
|
cjson \
|
|
|
|
crypto \
|
2015-08-22 14:25:47 +02:00
|
|
|
dhtlib \
|
2015-12-29 12:25:37 +01:00
|
|
|
tsl2561 \
|
|
|
|
http
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
endif # } PDIR
|
|
|
|
|
|
|
|
APPDIR = .
|
|
|
|
LDDIR = ../ld
|
|
|
|
|
2015-01-24 16:36:04 +01:00
|
|
|
CCFLAGS += -Os
|
2014-12-22 12:35:05 +01:00
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
TARGET_LDFLAGS = \
|
2015-06-17 10:30:12 +02:00
|
|
|
-nostdlib \
|
|
|
|
-Wl,-EL \
|
2015-06-18 11:36:27 +02:00
|
|
|
--longcalls \
|
2014-12-22 12:35:05 +01:00
|
|
|
--text-section-literals
|
|
|
|
|
|
|
|
ifeq ($(FLAVOR),debug)
|
2015-05-14 17:27:43 +02:00
|
|
|
TARGET_LDFLAGS += -g -Os
|
2014-12-22 12:35:05 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(FLAVOR),release)
|
2015-05-14 17:27:43 +02:00
|
|
|
TARGET_LDFLAGS += -Os
|
2014-12-22 12:35:05 +01:00
|
|
|
endif
|
|
|
|
|
2015-10-07 03:02:49 +02:00
|
|
|
LD_FILE = $(LDDIR)/nodemcu.ld
|
2014-12-22 12:35:05 +01:00
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
COMPONENTS_eagle.app.v6 = \
|
2015-06-17 10:30:12 +02:00
|
|
|
user/libuser.a \
|
|
|
|
driver/libdriver.a \
|
|
|
|
json/libjson.a \
|
2015-06-18 11:36:27 +02:00
|
|
|
platform/libplatform.a \
|
Add New Tasking I/F and rework GPIO, UART, etc to support it
As with the last commit this rolls up the follwowing, but include the various
review comments on the PR.
- **Documentation changes**. I've added the taks FAQ as a stub new Extension
developer FAQ, and split the old FAQ into a Lua Developer FAQ and a Hardware
FAQ.
- **Tasking I/F**. New `app/task/Makefile`, `app/task/task.c`,
`app/include/task/task.h` and `app/Makefile` as per previous commit. Cascade
changes to `app/driver/uart.c`, `app/include/driver/uart.h`,
`app/user/user_main.c` and `app/modules/node.c`
- **GPIO Rework** to `app/modules/gpio.c` and `pin_map.[hc]`, `platform.[hc]`
in `app/platform`
- **Other Optimisations** Move the `platform_*_exists()` from
`app/platform/common.c` to static inline declarations in `platform.h` as
this generates faster, smaller code. Move lgc.a routines out of iram0.
2016-02-17 18:13:17 +01:00
|
|
|
task/libtask.a \
|
2015-06-17 10:30:12 +02:00
|
|
|
libc/liblibc.a \
|
|
|
|
lua/liblua.a \
|
2015-10-09 06:32:59 +02:00
|
|
|
lwip/liblwip.a \
|
2015-06-17 10:30:12 +02:00
|
|
|
coap/coap.a \
|
|
|
|
mqtt/mqtt.a \
|
|
|
|
u8glib/u8glib.a \
|
2015-08-05 00:47:34 +02:00
|
|
|
ucglib/ucglib.a \
|
2015-06-17 10:30:12 +02:00
|
|
|
smart/smart.a \
|
|
|
|
spiffs/spiffs.a \
|
|
|
|
cjson/libcjson.a \
|
|
|
|
crypto/libcrypto.a \
|
|
|
|
dhtlib/libdhtlib.a \
|
2015-10-08 03:07:08 +02:00
|
|
|
tsl2561/tsl2561lib.a \
|
2015-12-29 12:25:37 +01:00
|
|
|
http/libhttp.a \
|
2015-12-17 02:37:01 +01:00
|
|
|
modules/libmodules.a \
|
2014-12-22 12:35:05 +01:00
|
|
|
|
2015-12-18 03:10:48 +01:00
|
|
|
# Inspect the modules library and work out which modules need to be linked.
|
|
|
|
# For each enabled module, a symbol name of the form XYZ_module_selected is
|
|
|
|
# returned. At link time those names are declared undefined, so those (and
|
|
|
|
# only those) modules are pulled in.
|
|
|
|
SELECTED_MODULE_SYMS=$(filter %_module_selected %module_selected1,$(shell $(NM) modules/.output/$(TARGET)/$(FLAVOR)/lib/libmodules.a))
|
2015-10-08 03:07:08 +02:00
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
LINKFLAGS_eagle.app.v6 = \
|
2015-06-17 10:30:12 +02:00
|
|
|
-Wl,--gc-sections \
|
2015-10-05 08:53:23 +02:00
|
|
|
-Wl,-Map=mapfile \
|
2015-06-18 11:36:27 +02:00
|
|
|
-nostdlib \
|
2015-10-08 03:07:08 +02:00
|
|
|
-T$(LD_FILE) \
|
|
|
|
-Wl,@../ld/defsym.rom \
|
2015-06-18 11:36:27 +02:00
|
|
|
-Wl,--no-check-sections \
|
2015-10-08 03:07:08 +02:00
|
|
|
-Wl,--wrap=_xtos_set_exception_handler \
|
2015-06-17 10:30:12 +02:00
|
|
|
-Wl,-static \
|
2015-12-18 03:10:48 +01:00
|
|
|
$(addprefix -u , $(SELECTED_MODULE_SYMS)) \
|
2015-06-17 10:30:12 +02:00
|
|
|
-Wl,--start-group \
|
2015-06-18 11:36:27 +02:00
|
|
|
-lc \
|
|
|
|
-lgcc \
|
|
|
|
-lhal \
|
|
|
|
-lphy \
|
|
|
|
-lpp \
|
|
|
|
-lnet80211 \
|
|
|
|
-lwpa \
|
2015-12-20 04:39:17 +01:00
|
|
|
-lwpa2 \
|
2015-06-18 11:36:27 +02:00
|
|
|
-lmain \
|
|
|
|
-ljson \
|
2015-06-17 10:30:12 +02:00
|
|
|
-lsmartconfig \
|
2015-06-18 11:36:27 +02:00
|
|
|
-lssl \
|
2015-12-20 04:39:17 +01:00
|
|
|
-lcrypto \
|
2015-06-18 11:36:27 +02:00
|
|
|
$(DEP_LIBS_eagle.app.v6) \
|
2015-06-17 10:30:12 +02:00
|
|
|
-Wl,--end-group \
|
2015-03-06 08:55:24 +01:00
|
|
|
-lm
|
2014-12-22 12:35:05 +01:00
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
DEPENDS_eagle.app.v6 = \
|
|
|
|
$(LD_FILE) \
|
2015-10-08 03:07:08 +02:00
|
|
|
Makefile
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
#############################################################
|
|
|
|
# Configuration i.e. compile options etc.
|
|
|
|
# Target specific stuff (defines etc.) goes in here!
|
|
|
|
# Generally values applying to a tree are captured in the
|
|
|
|
# makefile at its root level - these are then overridden
|
|
|
|
# for a subtree within the makefile rooted therein
|
|
|
|
#
|
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
#UNIVERSAL_TARGET_DEFINES = \
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
# Other potential configuration flags include:
|
|
|
|
# -DTXRX_TXBUF_DEBUG
|
|
|
|
# -DTXRX_RXBUF_DEBUG
|
|
|
|
# -DWLAN_CONFIG_CCX
|
2015-06-18 11:36:27 +02:00
|
|
|
CONFIGURATION_DEFINES = -D__ets__ \
|
2015-10-09 06:32:59 +02:00
|
|
|
-DICACHE_FLASH \
|
2015-12-12 04:27:31 +01:00
|
|
|
-DLUA_OPTIMIZE_MEMORY=2 \
|
|
|
|
-DMIN_OPT_LEVEL=2 \
|
2015-10-09 06:32:59 +02:00
|
|
|
-DLWIP_OPEN_SRC \
|
|
|
|
-DPBUF_RSV_FOR_WLAN \
|
2015-12-12 04:27:31 +01:00
|
|
|
-DEBUF_LWIP \
|
2014-12-22 12:35:05 +01:00
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
DEFINES += \
|
|
|
|
$(UNIVERSAL_TARGET_DEFINES) \
|
2014-12-22 12:35:05 +01:00
|
|
|
$(CONFIGURATION_DEFINES)
|
|
|
|
|
2015-06-18 11:36:27 +02:00
|
|
|
DDEFINES += \
|
|
|
|
$(UNIVERSAL_TARGET_DEFINES) \
|
2014-12-22 12:35:05 +01:00
|
|
|
$(CONFIGURATION_DEFINES)
|
|
|
|
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
# Recursion Magic - Don't touch this!!
|
|
|
|
#
|
|
|
|
# Each subtree potentially has an include directory
|
|
|
|
# corresponding to the common APIs applicable to modules
|
|
|
|
# rooted at that subtree. Accordingly, the INCLUDE PATH
|
|
|
|
# of a module can only contain the include directories up
|
|
|
|
# its parent path, and not its siblings
|
|
|
|
#
|
|
|
|
# Required for each makefile to inherit from the parent
|
|
|
|
#
|
|
|
|
|
|
|
|
INCLUDES := $(INCLUDES) -I $(PDIR)include
|
|
|
|
INCLUDES += -I ./
|
|
|
|
PDIR := ../$(PDIR)
|
|
|
|
sinclude $(PDIR)Makefile
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|