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.
Dependents: NerfUS-Coord NerfUSTarget
Fork of APP3_xbee by
XbeeTransmitterInterface.hpp
00001 #ifndef XBEE_TRANSMITTER_INTERFACE_HPP 00002 #define XBEE_TRANSMITTER_INTERFACE_HPP 00003 00004 #include <vector> 00005 #include "stdint.h" 00006 00007 class XbeeTransmitterInterface 00008 { 00009 public: 00010 virtual void transmit(const std::vector<uint8_t>& bytes, int address[8]) = 0; 00011 virtual void transmit(uint8_t bytes[4], int length, int address[8]) = 0; 00012 }; 00013 00014 #endif
Generated on Thu Jul 14 2022 15:12:33 by
1.7.2
