![]() |
F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
|
#include <Drv/Ports/I2cStatusEnumAc.hpp>
Public Types | |
| enum | T { I2C_OK = 0, I2C_ADDRESS_ERR = 1, I2C_WRITE_ERR = 2, I2C_READ_ERR = 3, I2C_OPEN_ERR = 4, I2C_OTHER_ERR = 5 } |
| The raw enum type. More... | |
| enum | { SERIALIZED_SIZE = sizeof(SerialType), NUM_CONSTANTS = 6 } |
| typedef U8 | SerialType |
| The serial representation type. More... | |
| typedef T | t |
| For backwards compatibility. More... | |
Public Types inherited from Fw::Serializable | |
| using | SizeType = FwSizeType |
Public Member Functions | |
| I2cStatus () | |
| Constructor (default value of I2C_OK) More... | |
| I2cStatus (const T e1) | |
| Constructor (user-provided value) More... | |
| I2cStatus (const I2cStatus &obj) | |
| Copy constructor. More... | |
| I2cStatus & | operator= (const I2cStatus &obj) |
| Copy assignment operator (object) More... | |
| I2cStatus & | operator= (T e1) |
| Copy assignment operator (raw enum) More... | |
| operator T () const | |
| Conversion operator. More... | |
| bool | operator== (T e1) const |
| Equality operator. More... | |
| bool | operator!= (T e1) const |
| Inequality operator. More... | |
| bool | isValid () const |
| Check raw enum value for validity. More... | |
| Fw::SerializeStatus | serializeTo (Fw::SerialBufferBase &buffer, Fw::Endianness mode=Fw::Endianness::BIG) const |
| Serialize raw enum value to SerialType. More... | |
| Fw::SerializeStatus | deserializeFrom (Fw::SerialBufferBase &buffer, Fw::Endianness mode=Fw::Endianness::BIG) |
| Deserialize raw enum value from SerialType. More... | |
Public Member Functions inherited from Fw::Serializable | |
| Serializable & | operator= (const Serializable &src)=default |
| TODO: this operator should be deleted, this must be done after RawTime is modified though. More... | |
| DEPRECATED (SerializeStatus serialize(SerialBufferBase &buffer) const, "Use serializeTo(SerialBufferBase& buffer) instead") | |
| DEPRECATED (SerializeStatus deserialize(SerialBufferBase &buffer), "Use deserializeFrom(SerialBufferBase& buffer) instead") | |
Public Attributes | |
| T | e |
| The raw enum value. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from Fw::Serializable | |
| Serializable () | |
| Default constructor. More... | |
| virtual | ~Serializable () |
| Virtual destructor. More... | |
Definition at line 16 of file I2cStatusEnumAc.hpp.
| typedef U8 Drv::I2cStatus::SerialType |
The serial representation type.
Definition at line 27 of file I2cStatusEnumAc.hpp.
| typedef T Drv::I2cStatus::t |
For backwards compatibility.
Definition at line 46 of file I2cStatusEnumAc.hpp.
| anonymous enum |
| Enumerator | |
|---|---|
| SERIALIZED_SIZE | The size of the serial representation. |
| NUM_CONSTANTS | The number of enumerated constants. |
Definition at line 54 of file I2cStatusEnumAc.hpp.
| enum Drv::I2cStatus::T |
The raw enum type.
Definition at line 30 of file I2cStatusEnumAc.hpp.
|
inline |
Constructor (default value of I2C_OK)
Definition at line 68 of file I2cStatusEnumAc.hpp.
|
inline |
Constructor (user-provided value)
| e1 | The raw enum value |
Definition at line 74 of file I2cStatusEnumAc.hpp.
|
inline |
Copy constructor.
| obj | The source object |
Definition at line 82 of file I2cStatusEnumAc.hpp.
|
virtual |
Deserialize raw enum value from SerialType.
| buffer | The serial buffer |
| mode | Endianness of serialized buffer |
Implements Fw::Serializable.
Definition at line 68 of file I2cStatusEnumAc.cpp.
| bool Drv::I2cStatus::isValid | ( | ) | const |
Check raw enum value for validity.
Definition at line 49 of file I2cStatusEnumAc.cpp.
|
inline |
Conversion operator.
Definition at line 106 of file I2cStatusEnumAc.hpp.
|
inline |
Inequality operator.
Definition at line 118 of file I2cStatusEnumAc.hpp.
Copy assignment operator (object)
| obj | The source object |
Definition at line 20 of file I2cStatusEnumAc.cpp.
Copy assignment operator (raw enum)
| e1 | The enum value |
Definition at line 27 of file I2cStatusEnumAc.cpp.
|
inline |
Equality operator.
Definition at line 112 of file I2cStatusEnumAc.hpp.
|
virtual |
Serialize raw enum value to SerialType.
| buffer | The serial buffer |
| mode | Endianness of serialized buffer |
Implements Fw::Serializable.
Definition at line 55 of file I2cStatusEnumAc.cpp.
| T Drv::I2cStatus::e |
The raw enum value.
Definition at line 170 of file I2cStatusEnumAc.hpp.