blob: bc9dc5195c3451b732e21cb862b51e4d5581cf43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#define EOS_OK 0
#define EOS_ERR -1
#define EOS_ERR_TIMEOUT -2
#define EOS_ERR_BUSY -3
#define EOS_ERR_SIZE -10
#define EOS_ERR_FULL -11
#define EOS_ERR_EMPTY -12
#define EOS_ERR_NOTFOUND -13
#define EOS_ERR_NOTSUPPORTED -14
#define EOS_ERR_NOMEM -100
#define EOS_TASK_PRIORITY_NET_XCHG 1
#define EOS_TASK_PRIORITY_APP_XCHG 1
#define EOS_TASK_PRIORITY_UDP_RCVR 1
#define EOS_TASK_PRIORITY_UART 1
#define EOS_TASK_PRIORITY_MODEM 1
#define EOS_TASK_PRIORITY_I2S 1
#define EOS_TASK_PRIORITY_CELL 1
#define EOS_TASK_PRIORITY_PWR 1
#define EOS_TASK_SSIZE_NET_XCHG 8192
#define EOS_TASK_SSIZE_APP_XCHG 8192
#define EOS_TASK_SSIZE_UDP_RCVR 4096
#define EOS_TASK_SSIZE_UART 4096
#define EOS_TASK_SSIZE_MODEM 4096
#define EOS_TASK_SSIZE_I2S 4096
#define EOS_TASK_SSIZE_CELL 4096
#define EOS_TASK_SSIZE_PWR 4096
|