Pulse Oximeter (NONIN) communicates with mbed via Bluetooth dongle and sends Heart Rate and Oxygen Saturation via GPRS module

Dependencies:   C12832 GPS GSM mbed

Fork of myBlueUSB_localfix by Nobuaki Aoki

Revision:
3:55a622e3dbb5
Parent:
0:003889bc474f
--- a/btserial.cpp	Sun Dec 08 21:52:09 2013 +0000
+++ b/btserial.cpp	Tue Apr 14 21:48:07 2015 +0000
@@ -70,7 +70,7 @@
 }
 
 void btserial::baud(int br) {
-    int rates[] = {2400,4800,7200,9600,19200,38400,57600,115200,230400};
+    int rates[] = {2400,4800,7200,9600,19200,38400,57600,115200,230400,460800};
     if (!open) return;
     for (int i = 0; i < sizeof(rates)/sizeof(int);i++)
         if (rates[i] == br) {