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
include/RealXbeeReceiver.hpp
- Committer:
 - GaiSensei
 - Date:
 - 2017-03-30
 - Revision:
 - 16:f4df01448b59
 - Parent:
 - 15:ab3e0d32e578
 - Child:
 - 23:2b67589150d9
 
File content as of revision 16:f4df01448b59:
#ifndef REAL_XBEE_RECEIVER_HPP
#define REAL_XBEE_RECEIVER_HPP
#include "xbee.h"
#include "XbeeReceiverInterface.hpp"
class RealXbeeReceiver : public XbeeReceiverInterface
{
    public:
        RealXbeeReceiver();
        virtual void start();
        
    private:
        Thread message_reader_thread;
        Thread message_handler_thread;
};
#endif
            
    