diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-08-11 19:04:15 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-08-11 19:04:15 +0200 |
commit | 0ca91a2b6a1b112a6e67306e7dbedaeec0225c5b (patch) | |
tree | f3edb2de79e16543be889d5b2070884c3ebaf212 /fw/esp32/components/eos/include | |
parent | 63547b7860354e3d1a174bc1fb515cbec1f514b0 (diff) |
cell messages are handled in separate task
Diffstat (limited to 'fw/esp32/components/eos/include')
-rw-r--r-- | fw/esp32/components/eos/include/eos.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fw/esp32/components/eos/include/eos.h b/fw/esp32/components/eos/include/eos.h index 0e660fb..7240c83 100644 --- a/fw/esp32/components/eos/include/eos.h +++ b/fw/esp32/components/eos/include/eos.h @@ -13,6 +13,7 @@ #define EOS_TASK_PRIORITY_NET_XCHG 1 #define EOS_TASK_PRIORITY_UDP_RCVR 1 #define EOS_TASK_PRIORITY_PWR 1 +#define EOS_TASK_PRIORITY_CELL 1 #define EOS_TASK_SSIZE_UART 4096 #define EOS_TASK_SSIZE_MODEM 4096 @@ -20,4 +21,5 @@ #define EOS_TASK_SSIZE_NET_XCHG 8192 #define EOS_TASK_SSIZE_UDP_RCVR 4096 #define EOS_TASK_SSIZE_PWR 4096 +#define EOS_TASK_SSIZE_CELL 4096 |