Nothing Special / mbed-STM32F030F4

Dependents:   STM32F031_blink_LED_2

Files at this revision

API Documentation at this revision

Comitter:
mega64
Date:
Tue Feb 14 21:52:10 2017 +0000
Parent:
10:971c9eb5466c
Commit message:
repair the effects of improvements in the mbed environment (Ch.1, serial_set_flow_control )

Changed in this revision

api/SerialBase.h Show annotated file Show diff for this revision Revisions of this file
common/SerialBase.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/api/SerialBase.h	Fri Sep 02 19:44:28 2016 +0000
+++ b/api/SerialBase.h	Tue Feb 14 21:52:10 2017 +0000
@@ -16,6 +16,10 @@
 #ifndef MBED_SERIALBASE_H
 #define MBED_SERIALBASE_H
 
+// for 030F4 flow control not implemented (N.S.)
+#undef DEVICE_SERIAL_FC
+
+
 #include "platform.h"
 
 #if DEVICE_SERIAL
--- a/common/SerialBase.cpp	Fri Sep 02 19:44:28 2016 +0000
+++ b/common/SerialBase.cpp	Tue Feb 14 21:52:10 2017 +0000
@@ -16,6 +16,9 @@
 #include "SerialBase.h"
 #include "wait_api.h"
 
+// for 030F4 flow control not implemented (N.S.)
+#undef DEVICE_SERIAL_FC
+
 #if DEVICE_SERIAL
 
 namespace mbed {