upstream changes taken over
This commit is contained in:
parent
f99bf6d75c
commit
8706d663d5
11
devicehandlers/CMakeLists.txt
Normal file
11
devicehandlers/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
target_sources(${LIB_FSFW_NAME}
|
||||||
|
PRIVATE
|
||||||
|
AssemblyBase.cpp
|
||||||
|
ChildHandlerBase.cpp
|
||||||
|
ChildHandlerFDIR.cpp
|
||||||
|
DeviceHandlerBase.cpp
|
||||||
|
DeviceHandlerFailureIsolation.cpp
|
||||||
|
DeviceHandlerMessage.cpp
|
||||||
|
DeviceTmReportingWrapper.cpp
|
||||||
|
HealthDevice.cpp
|
||||||
|
)
|
@ -746,6 +746,7 @@ protected:
|
|||||||
/**
|
/**
|
||||||
* Helper function to get pending command. This is useful for devices
|
* Helper function to get pending command. This is useful for devices
|
||||||
* like SPI sensors to identify the last sent command.
|
* like SPI sensors to identify the last sent command.
|
||||||
|
* This only returns the command sent in the last SEND_WRITE cycle.
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
DeviceCommandId_t getPendingCommand() const;
|
DeviceCommandId_t getPendingCommand() const;
|
||||||
|
@ -22,10 +22,10 @@ using DeviceCommandId_t = uint32_t;
|
|||||||
*/
|
*/
|
||||||
class DeviceHandlerIF {
|
class DeviceHandlerIF {
|
||||||
public:
|
public:
|
||||||
static const DeviceCommandId_t NO_COMMAND = -1;
|
static constexpr DeviceCommandId_t NO_COMMAND = -1;
|
||||||
|
|
||||||
static const uint8_t TRANSITION_MODE_CHILD_ACTION_MASK = 0x20;
|
static constexpr uint8_t TRANSITION_MODE_CHILD_ACTION_MASK = 0x20;
|
||||||
static const uint8_t TRANSITION_MODE_BASE_ACTION_MASK = 0x10;
|
static constexpr uint8_t TRANSITION_MODE_BASE_ACTION_MASK = 0x10;
|
||||||
|
|
||||||
using dh_heater_request_t = uint8_t;
|
using dh_heater_request_t = uint8_t;
|
||||||
using dh_thermal_state_t = int8_t;
|
using dh_thermal_state_t = int8_t;
|
||||||
|
Loading…
Reference in New Issue
Block a user