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.
include/RealXbeeTransmitter.hpp@16:f4df01448b59, 2017-03-30 (annotated)
- Committer:
- GaiSensei
- Date:
- Thu Mar 30 17:31:29 2017 +0000
- Revision:
- 16:f4df01448b59
- Parent:
- 14:cc65f603e659
Fixed bogues
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
GaiSensei | 14:cc65f603e659 | 1 | #ifndef REAL_XBEE_TRANSMITTER_HPP |
GaiSensei | 14:cc65f603e659 | 2 | #define REAL_XBEE_TRANSMITTER_HPP |
GaiSensei | 14:cc65f603e659 | 3 | |
GaiSensei | 16:f4df01448b59 | 4 | #include "xbee.h" |
GaiSensei | 16:f4df01448b59 | 5 | #include "XbeeTransmitterInterface.hpp" |
GaiSensei | 14:cc65f603e659 | 6 | |
GaiSensei | 14:cc65f603e659 | 7 | class RealXbeeTransmitter : public XbeeTransmitterInterface |
GaiSensei | 14:cc65f603e659 | 8 | { |
GaiSensei | 14:cc65f603e659 | 9 | public: |
GaiSensei | 14:cc65f603e659 | 10 | RealXbeeTransmitter(); |
GaiSensei | 14:cc65f603e659 | 11 | virtual void transmit(const std::vector<uint8_t>& bytes); |
GaiSensei | 14:cc65f603e659 | 12 | }; |
GaiSensei | 14:cc65f603e659 | 13 | |
GaiSensei | 14:cc65f603e659 | 14 | #endif |