Asynchronous (Non-blocking) Serial Communication library with variable length software ring buffer (FIFO). You can use RawSerial Library's primary method. Operability confirmed on mbed 2.0.

Dependencies:   FIFO

Dependents:   Brute_TS_Controller_2018_11

Revision:
12:bfe3984fb2e5
Parent:
10:1baa8e833ac6
Child:
13:e372a354d969
--- a/AsyncSerial.hpp	Tue Aug 22 07:30:07 2017 +0000
+++ b/AsyncSerial.hpp	Tue Aug 22 15:08:21 2017 +0000
@@ -34,6 +34,11 @@
 */
 class AsyncSerial{
 private:
+	
+    DigitalOut *led;
+    
+	
+	
 	// Serial port
 	RawSerial *serial;