diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-24 19:14:12 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-24 19:16:00 +0200 |
commit | 24342dd65efc34d0f89c1a87b9a793d1299538e1 (patch) | |
tree | 08f52978e9569e2ec112411daaa2cde835e23a68 /py/mpconfig.h | |
parent | d4c8e626f280ab096c1341577931d8071972bd4c (diff) | |
download | micropython-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.h | 4 |
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 */ |