update handling of analog monitors. Manually adding analog monotprs to the checking function is not necessary anymore

This commit is contained in:
2021-01-24 20:27:07 +01:00
parent 58c72fb2bc
commit 52272938b7
2 changed files with 14 additions and 12 deletions

View File

@@ -48,6 +48,7 @@ struct analog_monitor_info {
float min; /**< @brief Minumum value allowed */
float max; /**< @brief Maximum value allowed */
enum analog_monitor_status status; /**< @brief Current monitor status */
enum safety_flag associated_flag; /**< @brief Associated safety flag, that will be set, if monitor out of range */
uint64_t timestamp; /**< @brief ms timestamp when @ref analog_monitor_info::value was taken. */
};