15 lines
331 B
C++
15 lines
331 B
C++
#ifndef COMMON_CONFIG_DEFINITIONS_H_
|
|
#define COMMON_CONFIG_DEFINITIONS_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace config {
|
|
|
|
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_ */
|