F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
ParamValid.hpp
Go to the documentation of this file.
1 // ======================================================================
2 // \title ParamValid.hpp
3 // \author F Prime
4 // \brief Helpers for checking parameter validity
5 //
6 // \copyright
7 // Copyright (C) 2026 California Institute of Technology.
8 // ALL RIGHTS RESERVED. United States Government Sponsorship
9 // acknowledged.
10 //
11 // ======================================================================
12 
13 #ifndef FW_PRM_PARAM_VALID_HPP
14 #define FW_PRM_PARAM_VALID_HPP
15 
17 
22 #define FW_PARAM_OK(paramValid) (((paramValid) == Fw::ParamValid::DEFAULT) || ((paramValid) == Fw::ParamValid::VALID))
23 
24 #endif // FW_PRM_PARAM_VALID_HPP