Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Smoothie by
FileStream.h
00001 #ifndef _FILESTREAM_H_ 00002 #define _FILESTREAM_H_ 00003 00004 #include "StreamOutput.h" 00005 #include "stdlib.h" 00006 00007 class FileStream : public StreamOutput { 00008 public: 00009 FileStream(const char *filename) { fd= fopen(filename, "w"); } 00010 virtual ~FileStream(){ close(); } 00011 int puts(const char *str){ return (fd == NULL) ? 0 : fwrite(str, 1, strlen(str), fd); } 00012 void close() { if(fd != NULL) fclose(fd); fd= NULL; } 00013 bool is_open() { return fd != NULL; } 00014 00015 private: 00016 FILE *fd; 00017 }; 00018 00019 #endif
Generated on Tue Jul 12 2022 20:09:01 by
1.7.2
