replaced std::list by std::set for fixedSlotSequen
This commit is contained in:
@ -7,33 +7,11 @@
|
||||
#include <framework/modes/HasModesIF.h>
|
||||
#include <framework/ipc/MessageQueueSenderIF.h>
|
||||
|
||||
#if __cplusplus >= 201703L
|
||||
#include <array>
|
||||
#include <variant>
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Physical address type
|
||||
*/
|
||||
typedef uint32_t address_t;
|
||||
|
||||
///**
|
||||
// * This type safe union cold be used if C++17 or newer is used to transfer
|
||||
// * comIF settings to the communication interface object.
|
||||
// */
|
||||
//
|
||||
//#if __cplusplus >= 201703L
|
||||
//using comParameterArray_t = std::array<uint8_t, 4>;
|
||||
//using comParameters_t = std::variant<store_address_t, comParameterArray_t>;
|
||||
//#else
|
||||
//using comParameters_t = union comParameters {
|
||||
// comParameters() = default;
|
||||
// comParameters(uint32_t initValue): storeIdRaw(initValue) {}
|
||||
// uint32_t storeIdRaw;
|
||||
// uint8_t comParameter[4];
|
||||
// };
|
||||
//#endif
|
||||
|
||||
/**
|
||||
* This is the Interface used to communicate with a device handler.
|
||||
*
|
||||
|
Reference in New Issue
Block a user