48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
#include "RmapDeviceCommunicationIF.h"
|
|
#include "RMAP.h"
|
|
|
|
//TODO Cast here are all potential bugs
|
|
RmapDeviceCommunicationIF::~RmapDeviceCommunicationIF() {
|
|
}
|
|
|
|
ReturnValue_t RmapDeviceCommunicationIF::sendMessage(CookieIF* cookie,
|
|
uint8_t* data, uint32_t len) {
|
|
return RMAP::sendWriteCommand((RMAPCookie *) cookie, data, len);
|
|
}
|
|
|
|
ReturnValue_t RmapDeviceCommunicationIF::getSendSuccess(CookieIF* cookie) {
|
|
return RMAP::getWriteReply((RMAPCookie *) cookie);
|
|
}
|
|
|
|
ReturnValue_t RmapDeviceCommunicationIF::requestReceiveMessage(
|
|
CookieIF* cookie) {
|
|
return RMAP::sendReadCommand((RMAPCookie *) cookie,
|
|
((RMAPCookie *) cookie)->getMaxReplyLen());
|
|
}
|
|
|
|
ReturnValue_t RmapDeviceCommunicationIF::readReceivedMessage(CookieIF* cookie,
|
|
uint8_t** buffer, uint32_t* size) {
|
|
return RMAP::getReadReply((RMAPCookie *) cookie, buffer, size);
|
|
}
|
|
|
|
ReturnValue_t RmapDeviceCommunicationIF::setAddress(CookieIF* cookie,
|
|
uint32_t address) {
|
|
|
|
((RMAPCookie *) cookie)->setAddress(address);
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
uint32_t RmapDeviceCommunicationIF::getAddress(CookieIF* cookie) {
|
|
return ((RMAPCookie *) cookie)->getAddress();
|
|
}
|
|
|
|
ReturnValue_t RmapDeviceCommunicationIF::setParameter(CookieIF* cookie,
|
|
uint32_t parameter) {
|
|
//TODO Empty?
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
}
|
|
|
|
uint32_t RmapDeviceCommunicationIF::getParameter(CookieIF* cookie) {
|
|
return 0;
|
|
}
|