mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
10 lines
283 B
C
10 lines
283 B
C
#ifndef SYSTEM_H
|
|
#define SYSTEM_H
|
|
|
|
// On regroupe ici au les priorités des différents threads afin d'avoir une vision plus large
|
|
#define HMI_TASK_PRIORITY 1
|
|
#define VM_TASK_PRIORITY 2
|
|
#define FS_TASK_PRIORITY 3 ///< High priority for audio / file system access
|
|
|
|
#endif // SYSTEM_H
|