ads1115 only

Fork of mbed by mbed official

Revision:
122:f9eeca106725
Parent:
65:5798e58a58b1
--- a/FileLike.h	Wed May 25 16:44:06 2016 +0100
+++ b/FileLike.h	Thu Jul 07 14:34:11 2016 +0100
@@ -25,6 +25,8 @@
  *  A file-like object is one that can be opened with fopen by
  *  fopen("/name", mode). It is intersection of the classes Base and
  *  FileHandle.
+ *
+ *  @Note Synchronization level: Set by subclass
  */
 class FileLike : public FileHandle, public FileBase {
 
@@ -37,6 +39,7 @@
     FileLike(const char *name);
 
     virtual ~FileLike();
+
 };
 
 } // namespace mbed