diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-05-20 19:12:47 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-05-20 19:12:47 +0200 |
commit | 42d5c7be2c6bea5c03f55f43ad34b4bc28d50bcc (patch) | |
tree | 3b6cb33f5b211d8f32500e3a01e6ef066b9a4eac /fw/esp32/components/eos/include/net.h | |
parent | 3cac09c89fe0081f06188f1e9440de5d863951be (diff) |
net protocol added req/rep messages
Diffstat (limited to 'fw/esp32/components/eos/include/net.h')
-rw-r--r-- | fw/esp32/components/eos/include/net.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fw/esp32/components/eos/include/net.h b/fw/esp32/components/eos/include/net.h index f71d07d..f6b3700 100644 --- a/fw/esp32/components/eos/include/net.h +++ b/fw/esp32/components/eos/include/net.h @@ -13,7 +13,9 @@ #define EOS_NET_MAX_MTYPE 8 -#define EOS_NET_MTYPE_FLAG_ONEW 0x80 +#define EOS_NET_MTYPE_FLAG_ONEW 0x40 +#define EOS_NET_MTYPE_FLAG_REPW 0x80 +#define EOS_NET_MTYPE_FLAG_MASK 0xc0 /* esp32 specific */ #define EOS_NET_SIZE_BUFQ 4 |