mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Revision:
178:79309dc6340a
Parent:
168:9672193075cf
Child:
187:0387e8f68319
--- a/platform/Stream.h	Wed Nov 08 13:50:44 2017 +0000
+++ b/platform/Stream.h	Thu Nov 23 11:57:25 2017 +0000
@@ -26,16 +26,18 @@
 namespace mbed {
 /** \addtogroup platform */
 /** @{*/
+/**
+ * \defgroup platform_Stream Stream class
+ * @{
+ */
 
 extern void mbed_set_unbuffered_stream(std::FILE *_file);
 extern int mbed_getc(std::FILE *_file);
 extern char* mbed_gets(char *s, int size, std::FILE *_file);
-/** @}*/
 
 /** File stream
  *
  * @note Synchronization level: Set by subclass
- * @ingroup platform
  */
 class Stream : public FileLike, private NonCopyable<Stream> {
 
@@ -82,7 +84,9 @@
         // Stub
     }
 };
+/**@}*/
 
+/**@}*/
 } // namespace mbed
 
 #endif