fprime/Svc/Subtopologies/CdhCore/PingEntries.hpp
Thomas Boyer-Chammard c69ff72110
Format Svc and add to CI (#3978)
* Format Svc and add to CI

* Fix comlogger include

* fix assert UTs

* Fix static analysis warning

* formatting
2025-08-04 16:21:47 -07:00

17 lines
310 B
C++

#ifndef CDHCORE_PINGENTRIES_HPP
#define CDHCORE_PINGENTRIES_HPP
namespace PingEntries {
struct CdhCore_cmdDisp {
enum { WARN = 3, FATAL = 5 };
};
struct CdhCore_events {
enum { WARN = 3, FATAL = 5 };
};
struct CdhCore_tlmSend {
enum { WARN = 3, FATAL = 5 };
};
} // namespace PingEntries
#endif