higher priority for log buffer flush (#2592)
This commit is contained in:
parent
acf839d2de
commit
efe9dfa8d6
|
@ -24,11 +24,11 @@
|
|||
#define PRIO_STEPPER (NORMALPRIO + 5)
|
||||
#define PRIO_CJ125 (NORMALPRIO + 5)
|
||||
|
||||
// Console thread
|
||||
#define PRIO_CONSOLE (NORMALPRIO + 3)
|
||||
// Logging buffer flush is *slightly* above PRIO_CONSOLE so that we don't starve logging buffers during initialization and console commands
|
||||
#define PRIO_TEXT_LOG (NORMALPRIO + 2)
|
||||
|
||||
// Logging buffer flush is *slightly* above NORMALPRIO so that we don't starve logging buffers during initialization
|
||||
#define PRIO_TEXT_LOG (NORMALPRIO + 1)
|
||||
// Console thread
|
||||
#define PRIO_CONSOLE (NORMALPRIO + 1)
|
||||
|
||||
// Less important things
|
||||
#define PRIO_MMC (NORMALPRIO - 1)
|
||||
|
|
Loading…
Reference in New Issue