Merge remote-tracking branch 'origin/develop' into heater_handling
This commit is contained in:
@ -55,6 +55,19 @@ static constexpr uint32_t MAX_PUS_FUNNEL_QUEUE_DEPTH = 100;
|
||||
static constexpr uint32_t MAX_STORED_CMDS_UDP = 120;
|
||||
static constexpr uint32_t MAX_STORED_CMDS_TCP = 120;
|
||||
|
||||
namespace acs {
|
||||
|
||||
static constexpr uint32_t SCHED_BLOCK_1_SENSORS_MS = 15;
|
||||
static constexpr uint32_t SCHED_BLOCK_2_ACS_CTRL_MS = 40;
|
||||
static constexpr uint32_t SCHED_BLOCK_3_ACTUATOR_MS = 45;
|
||||
|
||||
// 15 ms for FM
|
||||
static constexpr float SCHED_BLOCK_1_PERIOD = static_cast<float>(SCHED_BLOCK_1_SENSORS_MS) / 400.0;
|
||||
static constexpr float SCHED_BLOCK_2_PERIOD = static_cast<float>(SCHED_BLOCK_2_ACS_CTRL_MS) / 400.0;
|
||||
static constexpr float SCHED_BLOCK_3_PERIOD = static_cast<float>(SCHED_BLOCK_3_ACTUATOR_MS) / 400.0;
|
||||
|
||||
} // namespace acs
|
||||
|
||||
} // namespace config
|
||||
|
||||
#endif /* COMMON_CONFIG_DEFINITIONS_H_ */
|
||||
|
Reference in New Issue
Block a user