forked from electro/esp-irblaster
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
338 B
19 lines
338 B
3 years ago
|
//
|
||
|
// Created by MightyPork on 2018/12/16.
|
||
|
//
|
||
|
|
||
|
#ifndef CSPEMU_PRIORITIES_H
|
||
|
#define CSPEMU_PRIORITIES_H
|
||
|
|
||
|
#define PRIO_NORMAL 4
|
||
|
#define PRIO_LOW 2
|
||
|
#define PRIO_HIGH 6
|
||
|
|
||
|
#define CONSOLE_TASK_STACK 4096
|
||
|
#define CONSOLE_TASK_PRIO PRIO_NORMAL
|
||
|
|
||
|
#define TELNET_TASK_STACK 4096
|
||
|
#define TELNET_TASK_PRIO PRIO_LOW
|
||
|
|
||
|
#endif //CSPEMU_PRIORITIES_H
|