mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* Adjust task priorities to fit in supported platforms' priority ranges Darwin's task priority range is most restrictive (15-47); adjusted priorities to reside within that range. * Add comment clarifying TASK_PRIORITY_DEFAULT and TASK_DEFAULT * Adjust relative task priorities for uplink and downlink This moves uplink tasks to higher priority than downlink tasks and places consumer tasks at higher priority than producer tasks.
15 lines
225 B
Fortran
15 lines
225 B
Fortran
module ComLoggerTeeConfig {
|
|
|
|
module QueueSizes {
|
|
constant comLog = 10
|
|
}
|
|
|
|
module StackSizes {
|
|
constant comLog = 64 * 1024
|
|
}
|
|
|
|
module Priorities {
|
|
constant comLog = 18
|
|
}
|
|
}
|