diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-28 17:45:22 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-28 17:45:22 +0300 |
commit | 978a429aaab21c7156f53924c7ba31c0da47fded (patch) | |
tree | 57d81d66a097c0c38aafcadb28cfe78abe4868ae | |
parent | ba61480df52e3d79349492a589a5bd999cd8ccbd (diff) | |
download | micropython-978a429aaab21c7156f53924c7ba31c0da47fded.tar.gz micropython-978a429aaab21c7156f53924c7ba31c0da47fded.zip |
esp8266: Set suitable values for axtls's RT_MAX_PLAIN_LENGTH & RT_EXTRA.
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index f70e9db48a..04a356a4bf 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -207,4 +207,4 @@ axtls: cd ../lib/axtls; cp config/upyconfig config/.config cd ../lib/axtls; make oldconfig -B cd ../lib/axtls; make clean - cd ../lib/axtls; make all CC="$(CC)" LD="$(LD)" CFLAGS_EXTRA="$(CFLAGS_XTENSA) -Dabort=abort_" + cd ../lib/axtls; make all CC="$(CC)" LD="$(LD)" CFLAGS_EXTRA="$(CFLAGS_XTENSA) -Dabort=abort_ -DRT_MAX_PLAIN_LENGTH=1024 -DRT_EXTRA=3072" |