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.
 
 
 
esp-geiger/main/tasks.h

27 lines
550 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 6000
#define MBIFC_TASK_PRIO PRIO_HIGH
#define ONEWIRES_TASK_STACK 4096
#define ONEWIRES_TASK_PRIO PRIO_NORMAL
#define FCTL_TASK_STACK 4096
#define FCTL_TASK_PRIO PRIO_NORMAL
#endif //CSPEMU_PRIORITIES_H