Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DmTftLibrary eeprom SX1280Lib filesystem mbed
Fork of MSNV2-Terminal_V1-5 by
DownlinkMessage.hpp
- Committer:
- patrick_duc
- Date:
- 2018-09-11
- Revision:
- 24:92c30dabfda4
File content as of revision 24:92c30dabfda4:
#ifndef __DOWNLINKMESSAGE_HPP__
#define __DOWNLINKMESSAGE_HPP__
#include "Context.h"
class ClearMessagePart;
class ControlMessagePart;
class DataMessagePart;
namespace misnet {
class DownlinkMessage;
}
class misnet::DownlinkMessage {
public:
string serialize() {
return _clearMessagePart.serialize() + _controlMessagePart.serialize() + _dataMessagePart.serialize();
}
private:
ClearMessagePart _clearMessagePart;
ControlMessagePart _controlMessagePart;
DataMessagePart _dataMessagePart;
};
#endif // __DOWNLINKMESSAGE_HPP__
