blob: e772637c90b6e4fb63493c8de47422d91bb9a248 (
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 1
#define EOS_TASK_PRIORITY_APP 1
#define EOS_TASK_PRIORITY_SOCK 1
#define EOS_TASK_PRIORITY_UART 1
#define EOS_TASK_PRIORITY_MODEM 1
#define EOS_TASK_PRIORITY_PCM 1
#define EOS_TASK_PRIORITY_CELL 1
#define EOS_TASK_PRIORITY_PWR 1
#define EOS_TASK_SSIZE_NET 8192
#define EOS_TASK_SSIZE_APP 8192
#define EOS_TASK_SSIZE_SOCK 4096
#define EOS_TASK_SSIZE_UART 4096
#define EOS_TASK_SSIZE_MODEM 4096
#define EOS_TASK_SSIZE_PCM 4096
#define EOS_TASK_SSIZE_CELL 4096
#define EOS_TASK_SSIZE_PWR 4096
|