2016-06-15 23:48:41 +02:00
|
|
|
#ifndef DEVICECOMMUNICATIONIF_H_
|
|
|
|
#define DEVICECOMMUNICATIONIF_H_
|
|
|
|
|
|
|
|
#include <framework/devicehandlers/Cookie.h>
|
2020-03-23 13:14:23 +01:00
|
|
|
#include <framework/devicehandlers/DeviceHandlerIF.h>
|
2016-06-15 23:48:41 +02:00
|
|
|
#include <framework/returnvalues/HasReturnvaluesIF.h>
|
2020-01-03 15:39:32 +01:00
|
|
|
/**
|
|
|
|
* @defgroup interfaces Interfaces
|
2020-03-23 17:58:23 +01:00
|
|
|
* @brief Interfaces for flight software objects
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-03-28 19:42:24 +01:00
|
|
|
* @defgroup comm Communication
|
2020-03-23 17:58:23 +01:00
|
|
|
* @brief Communication software components.
|
2020-01-03 15:39:32 +01:00
|
|
|
*/
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2019-10-29 19:31:18 +01:00
|
|
|
/**
|
2019-12-05 12:21:06 +01:00
|
|
|
* @brief This is an interface to decouple device communication from
|
2019-10-29 19:31:18 +01:00
|
|
|
* the device handler to allow reuse of these components.
|
2019-12-05 12:21:06 +01:00
|
|
|
* @details
|
2020-03-28 19:42:24 +01:00
|
|
|
* Documentation: Dissertation Baetz p.138.
|
2019-10-29 19:31:18 +01:00
|
|
|
* It works with the assumption that received data
|
|
|
|
* is polled by a component. There are four generic steps of device communication:
|
|
|
|
*
|
|
|
|
* 1. Send data to a device
|
|
|
|
* 2. Get acknowledgement for sending
|
|
|
|
* 3. Request reading data from a device
|
|
|
|
* 4. Read received data
|
|
|
|
*
|
2020-03-23 17:58:23 +01:00
|
|
|
* To identify different connection over a single interface can return
|
|
|
|
* so-called cookies to components.
|
2020-03-03 21:20:08 +01:00
|
|
|
* The CommunicationMessage message type can be used to extend the functionality of the
|
|
|
|
* ComIF if a separate polling task is required.
|
2020-03-23 17:58:23 +01:00
|
|
|
* @ingroup interfaces
|
|
|
|
* @ingroup comm
|
2019-10-29 19:31:18 +01:00
|
|
|
*/
|
2016-06-15 23:48:41 +02:00
|
|
|
class DeviceCommunicationIF: public HasReturnvaluesIF {
|
|
|
|
public:
|
2018-07-12 16:29:32 +02:00
|
|
|
static const uint8_t INTERFACE_ID = CLASS_ID::DEVICE_COMMUNICATION_IF;
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2020-03-26 19:53:05 +01:00
|
|
|
//!< This is used if no read request is to be made by the device handler.
|
|
|
|
static const ReturnValue_t NO_READ_REQUEST = MAKE_RETURN_CODE(0x01);
|
|
|
|
//! General protocol error. Define more concrete errors in child handler
|
|
|
|
static const ReturnValue_t PROTOCOL_ERROR = MAKE_RETURN_CODE(0x02);
|
|
|
|
//! If cookie is a null pointer
|
|
|
|
static const ReturnValue_t NULLPOINTER = MAKE_RETURN_CODE(0x03);
|
|
|
|
static const ReturnValue_t INVALID_COOKIE_TYPE = MAKE_RETURN_CODE(0x04);
|
|
|
|
// is this needed if there is no open/close call?
|
|
|
|
static const ReturnValue_t NOT_ACTIVE = MAKE_RETURN_CODE(0x05);
|
|
|
|
static const ReturnValue_t TOO_MUCH_DATA = MAKE_RETURN_CODE(0x06);
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2020-02-27 19:00:51 +01:00
|
|
|
virtual ~DeviceCommunicationIF() {}
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2020-03-24 15:33:18 +01:00
|
|
|
/**
|
|
|
|
* @brief Device specific initialization, using the cookie.
|
|
|
|
* @details
|
|
|
|
* The cookie is already prepared in the factory. If the communication
|
|
|
|
* interface needs to be set up in some way and requires cookie information,
|
|
|
|
* this can be performed in this function, which is called on device handler
|
|
|
|
* initialization.
|
|
|
|
* @param cookie
|
2020-03-26 19:53:05 +01:00
|
|
|
* @return -@c RETURN_OK if initialization was successfull
|
|
|
|
* - Everything else triggers failure event with returnvalue as parameter 1
|
2020-03-24 15:33:18 +01:00
|
|
|
*/
|
|
|
|
virtual ReturnValue_t initializeInterface(CookieIF * cookie) = 0;
|
|
|
|
|
2019-10-29 19:31:18 +01:00
|
|
|
/**
|
|
|
|
* Called by DHB in the SEND_WRITE doSendWrite().
|
|
|
|
* This function is used to send data to the physical device
|
|
|
|
* by implementing and calling related drivers or wrapper functions.
|
|
|
|
* @param cookie
|
|
|
|
* @param data
|
|
|
|
* @param len
|
2020-03-19 00:49:47 +01:00
|
|
|
* @return -@c RETURN_OK for successfull send
|
2020-03-26 19:53:05 +01:00
|
|
|
* - Everything else triggers failure event with returnvalue as parameter 1
|
2019-10-29 19:31:18 +01:00
|
|
|
*/
|
2020-03-23 19:09:42 +01:00
|
|
|
virtual ReturnValue_t sendMessage(CookieIF *cookie, const uint8_t * sendData,
|
2020-03-23 17:58:23 +01:00
|
|
|
size_t sendLen) = 0;
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2020-03-23 17:58:23 +01:00
|
|
|
/**
|
|
|
|
* Called by DHB in the GET_WRITE doGetWrite().
|
|
|
|
* Get send confirmation that the data in sendMessage() was sent successfully.
|
|
|
|
* @param cookie
|
|
|
|
* @return -@c RETURN_OK if data was sent successfull
|
2020-03-26 19:53:05 +01:00
|
|
|
* - Everything else triggers falure event with returnvalue as parameter 1
|
2020-03-23 17:58:23 +01:00
|
|
|
*/
|
2020-03-23 19:09:42 +01:00
|
|
|
virtual ReturnValue_t getSendSuccess(CookieIF *cookie) = 0;
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2020-03-04 23:07:54 +01:00
|
|
|
/**
|
|
|
|
* Called by DHB in the SEND_WRITE doSendRead().
|
2020-03-23 17:58:23 +01:00
|
|
|
* Request a reply.
|
2020-03-04 23:07:54 +01:00
|
|
|
* @param cookie
|
2020-03-26 19:53:05 +01:00
|
|
|
* @return -@c RETURN_OK to confirm the request for data has been sent.
|
|
|
|
* -@c NO_READ_REQUEST if no request shall be made. readReceivedMessage()
|
|
|
|
* will not be called in the respective communication cycle.
|
|
|
|
* - Everything else triggers failure event with returnvalue as parameter 1
|
2020-03-04 23:07:54 +01:00
|
|
|
*/
|
2020-03-23 19:09:42 +01:00
|
|
|
virtual ReturnValue_t requestReceiveMessage(CookieIF *cookie, size_t requestLen) = 0;
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2019-10-29 19:31:18 +01:00
|
|
|
/**
|
2020-03-04 23:07:54 +01:00
|
|
|
* Called by DHB in the GET_WRITE doGetRead().
|
2019-10-29 19:31:18 +01:00
|
|
|
* This function is used to receive data from the physical device
|
|
|
|
* by implementing and calling related drivers or wrapper functions.
|
|
|
|
* @param cookie
|
|
|
|
* @param data
|
|
|
|
* @param len
|
2019-11-29 19:56:05 +01:00
|
|
|
* @return @c RETURN_OK for successfull receive
|
2020-03-26 19:53:05 +01:00
|
|
|
* - Everything else triggers failure event with returnvalue as parameter 1
|
2019-10-29 19:31:18 +01:00
|
|
|
*/
|
2020-03-23 19:09:42 +01:00
|
|
|
virtual ReturnValue_t readReceivedMessage(CookieIF *cookie, uint8_t **buffer,
|
2020-03-23 17:58:23 +01:00
|
|
|
size_t *size) = 0;
|
2016-06-15 23:48:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DEVICECOMMUNICATIONIF_H_ */
|