56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
///*
|
|
// * MGMRM3100Handler.cpp
|
|
// *
|
|
// * Created on: 28.05.2020
|
|
// * Author: lukas
|
|
// */
|
|
//
|
|
//#include <bits/stdint-uintn.h>
|
|
//#include <framework/devicehandlers/DeviceHandlerMessage.h>
|
|
//#include <framework/objectmanager/SystemObjectIF.h>
|
|
//#include <framework/returnvalues/HasReturnvaluesIF.h>
|
|
//#include <mission/devicehandling/MGMRM3100Handler.h>
|
|
//#include <stddef.h>
|
|
//
|
|
//MGMRM3100Handler::MGMRM3100Handler(DeviceCommunicationIF *commInterface, object_id_t setOjectId,
|
|
// uint32_t address, uint32_t maxReplyLen, datapool::opus_variable_id mgmMeasurement, datapool::opus_variable_id mgmTemperature)
|
|
// :NotDeviceHandlerBase(commInterface, setOjectId , address, maxReplyLen),internalState(STATE_NONE),
|
|
// mgmMagneticPoolId(mgmMeasurement),mgmTempPoolId(mgmTemperature){
|
|
//}
|
|
//
|
|
//MGMRM3100Handler::~MGMRM3100Handler() {
|
|
//}
|
|
//
|
|
//ReturnValue_t MGMRM3100Handler::buildTransitionDeviceCommand(
|
|
// DeviceCommandId_t *id) {
|
|
// return RETURN_OK;
|
|
//}
|
|
//
|
|
//void MGMRM3100Handler::doStartUp() {
|
|
//}
|
|
//
|
|
//void MGMRM3100Handler::doShutDown() {
|
|
//}
|
|
//
|
|
//ReturnValue_t MGMRM3100Handler::buildNormalDeviceCommand(
|
|
// DeviceCommandId_t *id) {
|
|
// return RETURN_OK;
|
|
//}
|
|
//
|
|
//ReturnValue_t MGMRM3100Handler::buildCommandFromCommand(
|
|
// DeviceCommandId_t deviceCommand, const uint8_t *commandData,
|
|
// size_t commandDataLen) {
|
|
// return RETURN_OK;
|
|
//}
|
|
//
|
|
//ReturnValue_t MGMRM3100Handler::scanForReply(
|
|
// const uint8_t *start, uint32_t len, DeviceCommandId_t *foundId,
|
|
// uint32_t *foundLen) {
|
|
// return RETURN_OK;
|
|
//}
|
|
//
|
|
//ReturnValue_t MGMRM3100Handler::interpretDeviceReply(
|
|
// DeviceCommandId_t id, const uint8_t *packet) {
|
|
// return RETURN_OK;
|
|
//}
|