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:
2014-02-05
Revision:
3:ddeb620fb25e
Parent:
2:12c38a710982
Child:
5:2e759cc06191

File content as of revision 3:ddeb620fb25e:

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

#define FACTORY_BAUD 9600
#define DEFAULT_BAUD 115200
#define AT_BAUD 38400

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

 protected:
  DigitalOut reset_out;
};