Ad van der Weiden / Mbed 2 deprecated myBlueUSB

Dependencies:   mbed myUSBHost AvailableMemory

Dependents:   mbed_TANK_Kinect myBlueUSB_ros ftusbClass

Revision:
4:b94984a20500
Parent:
3:50196dce45f8
Child:
5:378c208637e3
--- a/btserial.h	Wed May 04 09:31:15 2011 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-#ifndef BTSERIAL_H
-#define BTSERIAL_H
-#include "mbed.h"
-#include "RFCOMM.h"
-
-class btserial {
-    static const int bufsize = 127;
-    int sock;
-    unsigned char sendbuf[bufsize], recbuf[bufsize];
-    int sendptr, recptrin, recptrout, free;
-    static void cb(int socket, SocketState state, const unsigned char *data, int len, void* userData);
-    void stash(const unsigned char *data, int len);
-    bool open;
-public:
-    btserial(char ba[6], char ch);//outgoing
-    btserial(char ch);//incoming
-    void baud(int);
-    void format(int, Serial::Parity, int);
-    int putc(int);
-    int getc();
-    int readable() {
-        if (!open) return -1;
-        return bufsize-free;
-    }
-    int writeable() {
-        if (!open) return -1;
-        return bufsize - sendptr;
-    }
-};
-
-#endif
\ No newline at end of file