Minimale Veränderungen in Btbee; Die Datenübertragung funktioniert nicht hunderprozentig, v.a. wenn mehrere Bytes übertragen werden.

Fork of btbee by Nikolas Goldin

btbee.h

Committer:
ngoldin
Date:
2013-05-16
Revision:
1:56f437e4d9e0
Parent:
0:e7cb710c8900
Child:
2:12c38a710982

File content as of revision 1:56f437e4d9e0:

#include "mbed.h"
#include "platform.h"

class btbee: public Serial{
 public: 
  btbee(PinName respin, PinName tx, PinName rx);
  btbee(void);
  void reset(void);
  int read_all(char*,const int, int*);

 protected:
  DigitalOut reset_out;
};