summaryrefslogtreecommitdiffstatshomepage
path: root/py/mpconfig.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-03-24 19:14:12 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-03-24 19:16:00 +0200
commit24342dd65efc34d0f89c1a87b9a793d1299538e1 (patch)
tree08f52978e9569e2ec112411daaa2cde835e23a68 /py/mpconfig.h
parentd4c8e626f280ab096c1341577931d8071972bd4c (diff)
downloadmicropython-24342dd65efc34d0f89c1a87b9a793d1299538e1.tar.gz
micropython-24342dd65efc34d0f89c1a87b9a793d1299538e1.zip
extmod/modwebsocket: Start module for WebSocket helper functions.
Currently, only write support is implemented (of limited buffer size).
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r--py/mpconfig.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h
index 39070b712e..67bbba7e1f 100644
--- a/py/mpconfig.h
+++ b/py/mpconfig.h
@@ -836,6 +836,10 @@ typedef double mp_float_t;
#define MICROPY_PY_USSL (0)
#endif
+#ifndef MICROPY_PY_WEBSOCKET
+#define MICROPY_PY_WEBSOCKET (0)
+#endif
+
/*****************************************************************************/
/* Hooks for a port to add builtins */