mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 23:38:06 -06:00
* Format Svc and add to CI * Fix comlogger include * fix assert UTs * Fix static analysis warning * formatting
17 lines
310 B
C++
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
|