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.
BusSerial.h
- Committer:
- ttrist
- Date:
- 2020-03-06
- Revision:
- 0:418bb20836bd
- Child:
- 1:62db8d68f92e
File content as of revision 0:418bb20836bd:
#ifndef BusSerial_H
#define BusSerial_H
 
#include "mbed.h"
#include "BufferedSerial.h"
class BusSerial:public BufferedSerial
{
public:
    BusSerial(PinName tx, PinName rx,Timer *timer);
    void GetBusSerial(uint8_t *Argument_Array, int myHead_ID, int RecieveData_sizeof, int BusSerialTimeout);
private:
    Timer *_timer;
};
#endif