Today's the day. Renamed platform to framework.
This commit is contained in:
50
rmap/RMAPCookie.h
Normal file
50
rmap/RMAPCookie.h
Normal file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* RMAPCookie.h
|
||||
*
|
||||
* Created on: 07.11.2012
|
||||
* Author: mohr
|
||||
*/
|
||||
|
||||
#ifndef RMAPCOOKIE_H_
|
||||
#define RMAPCOOKIE_H_
|
||||
|
||||
#include <framework/devicehandlers/Cookie.h>
|
||||
#include <framework/rmap/rmapStructs.h>
|
||||
|
||||
class RMAPChannelIF;
|
||||
|
||||
class RMAPCookie : public Cookie{
|
||||
friend class RMAP;
|
||||
friend class RmapSPWChannel;
|
||||
public:
|
||||
//To Uli: Sorry, I need an empty ctor to initialize an array of cookies.
|
||||
RMAPCookie();
|
||||
|
||||
RMAPCookie(uint32_t set_address, uint8_t set_extended_address,
|
||||
RMAPChannelIF *set_channel, uint8_t set_command_mask, uint32_t maxReplyLen = 0);
|
||||
virtual ~RMAPCookie();
|
||||
|
||||
|
||||
void setAddress(uint32_t address);
|
||||
uint32_t getAddress();
|
||||
void setExtendedAddress(uint8_t);
|
||||
uint8_t getExtendedAddress();
|
||||
void setChannel(RMAPChannelIF *channel);
|
||||
RMAPChannelIF *getChannel();
|
||||
void setCommandMask(uint8_t commandMask);
|
||||
uint8_t getCommandMask();
|
||||
uint32_t getMaxReplyLen() const;
|
||||
void setMaxReplyLen(uint32_t maxReplyLen);
|
||||
|
||||
//rmap_cookie* getDeviceDescriptor();
|
||||
|
||||
protected:
|
||||
RMAPStructs::rmap_cmd_header header;
|
||||
void *txdesc;
|
||||
uint8_t rxdesc_index;
|
||||
RMAPChannelIF *channel;
|
||||
uint8_t command_mask;
|
||||
uint32_t maxReplyLen;
|
||||
};
|
||||
|
||||
#endif /* RMAPCOOKIE_H_ */
|
Reference in New Issue
Block a user