eive-obsw/common/config/definitions.h

15 lines
331 B
C
Raw Normal View History

#ifndef COMMON_CONFIG_DEFINITIONS_H_
#define COMMON_CONFIG_DEFINITIONS_H_
#include <cstdint>
namespace config {
2022-03-25 18:39:21 +01:00
static constexpr uint32_t PL_PCDU_TRANSITION_TIMEOUT_MS = 20 * 60 * 1000;
static constexpr uint32_t LONGEST_MODE_TIMEOUT_SECONDS = PL_PCDU_TRANSITION_TIMEOUT_MS / 1000;
}
#endif /* COMMON_CONFIG_DEFINITIONS_H_ */