You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
bc4f8b438b
As mentioned in #4450, `websocket` was experimental with a single intended user, `webrepl`. Therefore, we'll make this change without a weak link `websocket` -> `uwebsocket`.
11 lines
273 B
C
11 lines
273 B
C
#ifndef MICROPY_INCLUDED_EXTMOD_MODUWEBSOCKET_H
|
|
#define MICROPY_INCLUDED_EXTMOD_MODUWEBSOCKET_H
|
|
|
|
#define FRAME_OPCODE_MASK 0x0f
|
|
enum {
|
|
FRAME_CONT, FRAME_TXT, FRAME_BIN,
|
|
FRAME_CLOSE = 0x8, FRAME_PING, FRAME_PONG
|
|
};
|
|
|
|
#endif // MICROPY_INCLUDED_EXTMOD_MODUWEBSOCKET_H
|