fsfw/src/fsfw/introspection/Types.h

8 lines
442 B
C
Raw Normal View History

2022-06-28 18:56:52 +02:00
#pragma once
//maybe call them MIB types as these are the ones exposed to the MIB?
// Note: some DBs (Postgress, Mongo) only support signed 64bit integers. To have a common denominator, all integers are int64_t.
// As such, ther is no unsigned Type, as there can not be a uint64_t and uint32_t completely fits into int64_t
namespace Types {
2022-09-07 10:54:49 +02:00
enum ParameterType { SIGNED, FLOATING, ENUM, STRING, BYTEARRAY, UNSUPPORTED };
2022-06-28 18:56:52 +02:00
} // namespace Types