Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Revision:
93:e188a91d3eaa
Parent:
85:024bf7f99721
Child:
111:4336505e4b1c
--- a/Stream.h	Thu Nov 27 13:33:22 2014 +0000
+++ b/Stream.h	Tue Feb 03 15:31:20 2015 +0000
@@ -21,6 +21,10 @@
 
 namespace mbed {
 
+extern void mbed_set_unbuffered_stream(FILE *_file);
+extern int mbed_getc(FILE *_file);
+extern char* mbed_gets(char *s, int size, FILE *_file);
+
 class Stream : public FileLike {
 
 public: