Skip to content
Snippets Groups Projects
Unverified Commit 009ffdea authored by kongr45gpen's avatar kongr45gpen
Browse files

Fix configs

parent 881b90d7
No related branches found
No related tags found
No related merge requests found
...@@ -157,7 +157,7 @@ inline const uint16_t LoggerMaxMessageSize = 512; ...@@ -157,7 +157,7 @@ inline const uint16_t LoggerMaxMessageSize = 512;
/** /**
* @brief Size of the map holding references to each Parameter object for the ST[20] parameter service * @brief Size of the map holding references to each Parameter object for the ST[20] parameter service
*/ */
inline const uint8_t ECSSParameterCount = 250; inline const uint8_t ECSSParameterCount = 500;
/** /**
* @brief Defines whether the optional CRC field is included * @brief Defines whether the optional CRC field is included
......
...@@ -45,7 +45,7 @@ private: ...@@ -45,7 +45,7 @@ private:
* The maximum value that can fit in @ref taiCounter, or the maximum number of seconds since epoch that can be * The maximum value that can fit in @ref taiCounter, or the maximum number of seconds since epoch that can be
* represented in this base class * represented in this base class
*/ */
static constexpr uint64_t maxSecondCounterValue = (1U << (8U * secondsBytes)) - 1; static constexpr uint64_t maxSecondCounterValue = (uint64_t{1U} << (8U * secondsBytes)) - 1;
/** /**
* Returns whether the amount of `seconds` can be represented by this TimeStamp. * Returns whether the amount of `seconds` can be represented by this TimeStamp.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment