![]() |
F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
|
#include <Drv/Ports/GpioStatusEnumAc.hpp>
Public Types | |
| enum | T { OP_OK = 0 , NOT_OPENED = 1 , INVALID_MODE = 2 , UNKNOWN_ERROR = 3 } |
| The raw enum type. More... | |
| enum | { SERIALIZED_SIZE = sizeof(SerialType) , NUM_CONSTANTS = 4 } |
| typedef I32 | SerialType |
| The serial representation type. More... | |
| typedef T | t |
| For backwards compatibility. More... | |
Public Types inherited from Fw::Serializable | |
| using | SizeType = NATIVE_UINT_TYPE |
Public Member Functions | |
| GpioStatus () | |
| Constructor (default value of OP_OK) More... | |
| GpioStatus (const T e1) | |
| Constructor (user-provided value) More... | |
| GpioStatus (const GpioStatus &obj) | |
| Copy constructor. More... | |
| GpioStatus & | operator= (const GpioStatus &obj) |
| Copy assignment operator (object) More... | |
| GpioStatus & | 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 | serialize (Fw::SerializeBufferBase &buffer) const |
| Serialize raw enum value to SerialType. More... | |
| Fw::SerializeStatus | deserialize (Fw::SerializeBufferBase &buffer) |
| Deserialize raw enum value from SerialType. More... | |
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 () |
| destructor More... | |
Definition at line 16 of file GpioStatusEnumAc.hpp.
| typedef I32 Drv::GpioStatus::SerialType |
The serial representation type.
Definition at line 27 of file GpioStatusEnumAc.hpp.
| typedef T Drv::GpioStatus::t |
For backwards compatibility.
Definition at line 42 of file GpioStatusEnumAc.hpp.
| anonymous enum |
| Enumerator | |
|---|---|
| SERIALIZED_SIZE | The size of the serial representation. |
| NUM_CONSTANTS | The number of enumerated constants. |
Definition at line 50 of file GpioStatusEnumAc.hpp.
| enum Drv::GpioStatus::T |
The raw enum type.
| Enumerator | |
|---|---|
| OP_OK | Operation succeeded. |
| NOT_OPENED | Pin was never opened. |
| INVALID_MODE | Operation not permitted with current configuration. |
| UNKNOWN_ERROR | An unknown error occurred. |
Definition at line 30 of file GpioStatusEnumAc.hpp.
|
inline |
Constructor (default value of OP_OK)
Definition at line 64 of file GpioStatusEnumAc.hpp.
|
inline |
Constructor (user-provided value)
| e1 | The raw enum value |
Definition at line 70 of file GpioStatusEnumAc.hpp.
|
inline |
Copy constructor.
| obj | The source object |
Definition at line 78 of file GpioStatusEnumAc.hpp.
|
virtual |
Deserialize raw enum value from SerialType.
| buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 63 of file GpioStatusEnumAc.cpp.
| bool Drv::GpioStatus::isValid | ( | ) | const |
Check raw enum value for validity.
Definition at line 48 of file GpioStatusEnumAc.cpp.
|
inline |
Conversion operator.
Definition at line 102 of file GpioStatusEnumAc.hpp.
|
inline |
Inequality operator.
Definition at line 114 of file GpioStatusEnumAc.hpp.
| GpioStatus & Drv::GpioStatus::operator= | ( | const GpioStatus & | obj | ) |
Copy assignment operator (object)
| obj | The source object |
Definition at line 19 of file GpioStatusEnumAc.cpp.
| GpioStatus & Drv::GpioStatus::operator= | ( | T | e1 | ) |
Copy assignment operator (raw enum)
| e1 | The enum value |
Definition at line 26 of file GpioStatusEnumAc.cpp.
|
inline |
Equality operator.
Definition at line 108 of file GpioStatusEnumAc.hpp.
|
virtual |
Serialize raw enum value to SerialType.
| buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 54 of file GpioStatusEnumAc.cpp.
| T Drv::GpioStatus::e |
The raw enum value.
Definition at line 164 of file GpioStatusEnumAc.hpp.