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.
Fork of btbee by
btbee.h
00001 #include "mbed.h" 00002 #include "platform.h" 00003 00004 #define FACTORY_BAUD 9600 00005 #define DEFAULT_BAUD 115200 00006 #define AT_BAUD 38400 00007 00008 // this is a test comment 00009 class btbee: public Serial{ 00010 public: 00011 btbee(PinName respin, PinName tx, PinName rx); 00012 btbee(void); 00013 void reset(void); 00014 void at_baud(void); 00015 void factory_baud(void); 00016 void default_baud(void); 00017 int read_all(char*,const int, int*); 00018 int read_line(char*,const int, int*); 00019 00020 protected: 00021 DigitalOut reset_out; 00022 }; 00023
Generated on Fri Jul 22 2022 10:32:38 by
1.7.2
