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.
21 lines
405 B
21 lines
405 B
//
|
|
// 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
|
|
|
|
#define MBIFC_TASK_STACK 4096
|
|
#define MBIFC_TASK_PRIO PRIO_LOW
|
|
|
|
#endif //CSPEMU_PRIORITIES_H
|
|
|