mbed library sources

Fork of mbed-src by mbed official

Revision:
64:7b352733b00a
Parent:
13:0645d8841f51
Child:
525:c320967f86b9
--- a/hal/serial_api.h	Thu Dec 19 09:00:06 2013 +0000
+++ b/hal/serial_api.h	Thu Dec 19 13:15:07 2013 +0000
@@ -37,6 +37,13 @@
     TxIrq
 } SerialIrq;
 
+typedef enum {
+    FlowControlNone,
+    FlowControlRTS,
+    FlowControlCTS,
+    FlowControlRTSCTS
+} FlowControl;
+
 typedef void (*uart_irq_handler)(uint32_t id, SerialIrq event);
 
 typedef struct serial_s serial_t;
@@ -60,6 +67,8 @@
 
 void serial_pinout_tx(PinName tx);
 
+void serial_set_flow_control(serial_t *obj, FlowControl type, PinName rxflow, PinName txflow);
+
 #ifdef __cplusplus
 }
 #endif