diff options
author | Josef Gajdusek <atx@atx.name> | 2015-05-11 21:11:37 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-05-13 00:12:54 +0100 |
commit | 103d12a877f09e5d812f8c9c1fbf13ddbea4f78c (patch) | |
tree | 6ae6fc565aa5064d270d8254bede2c9d24ec7694 /esp8266/Makefile | |
parent | b47931978feffc7739fab7261b81caed1622fc9d (diff) | |
download | micropython-103d12a877f09e5d812f8c9c1fbf13ddbea4f78c.tar.gz micropython-103d12a877f09e5d812f8c9c1fbf13ddbea4f78c.zip |
esp8266: Add utime and pyb.RTC
Diffstat (limited to 'esp8266/Makefile')
-rw-r--r-- | esp8266/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index c891c50dcb..aac37bd2c0 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -18,6 +18,7 @@ INC += -I.. INC += -I../stmhal INC += -I../lib/mp-readline INC += -I../lib/netutils +INC += -I../lib/timeutils INC += -I$(BUILD) INC += -I$(ESP_SDK)/include @@ -52,7 +53,9 @@ SRC_C = \ uart.c \ modpyb.c \ modpybpin.c \ + modpybrtc.c \ modesp.c \ + modutime.c \ utils.c \ $(BUILD)/frozen.c \ @@ -66,6 +69,7 @@ LIB_SRC_C = $(addprefix lib/,\ libc/string0.c \ mp-readline/readline.c \ netutils/netutils.c \ + timeutils/timeutils.c \ ) SRC_S = \ |