diff options
Diffstat (limited to 'os/kernel/include')
-rw-r--r-- | os/kernel/include/chtm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/kernel/include/chtm.h b/os/kernel/include/chtm.h index b72bff8e6..93e24d48c 100644 --- a/os/kernel/include/chtm.h +++ b/os/kernel/include/chtm.h @@ -63,8 +63,9 @@ typedef struct {
rtcnt_t best; /**< @brief Best measurement. */
rtcnt_t worst; /**< @brief Worst measurement. */
- rtcnt_t cumulative; /**< @brief Cumulative measurement. */
rtcnt_t last; /**< @brief Last measurement. */
+ ucnt_t n; /**< @brief Number of measurements. */
+ rttime_t cumulative; /**< @brief Cumulative measurement. */
} time_measurement_t;
/*===========================================================================*/
|