Techcon 2014 BLE sample Police HRM (earbud-based) for Nordic

Dependencies:   BLE_API GroveEarbudSensor mbed nRF51822 BufferedSerial

Files at this revision

API Documentation at this revision

Comitter:
ansond
Date:
Fri Sep 26 02:36:39 2014 +0000
Parent:
0:aa970fb89a5c
Child:
2:fdd930877498
Commit message:
switched to buffered serial

Changed in this revision

BufferedSerial.lib Show annotated file Show diff for this revision Revisions of this file
GroveEarbudSensor.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BufferedSerial.lib	Fri Sep 26 02:36:39 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/sam_grove/code/BufferedSerial/#8287e83943f0
--- a/GroveEarbudSensor.lib	Thu Sep 25 22:19:56 2014 +0000
+++ b/GroveEarbudSensor.lib	Fri Sep 26 02:36:39 2014 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/users/ansond/code/GroveEarbudSensor/#6d5410cdd47d
+http://developer.mbed.org/users/ansond/code/GroveEarbudSensor/#618117fe4b04
--- a/main.cpp	Thu Sep 25 22:19:56 2014 +0000
+++ b/main.cpp	Fri Sep 26 02:36:39 2014 +0000
@@ -47,7 +47,8 @@
 
 // Console allocation
 #if ENABLE_CONSOLE
-    Serial  pc(USBTX, USBRX);
+    #include "BufferedSerial.h"
+    BufferedSerial  pc(USBTX, USBRX);
     #define LOG_CONSOLE(...) { pc.printf(__VA_ARGS__); }
 #else
     #define LOG_CONSOLE(...)