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 mbed_tes_cpt by
mbed/Stream.h
- Committer:
- ClementBreteau
- Date:
- 2017-05-11
- Revision:
- 1:f3f702086a30
File content as of revision 1:f3f702086a30:
/* mbed Microcontroller Library - Stream * Copyright (c) 2007-2009 ARM Limited. All rights reserved. */ #ifndef MBED_STREAM_H #define MBED_STREAM_H #include "FileLike.h" #include "platform.h" #include <cstdio> namespace mbed { class Stream : public FileLike { public: Stream(const char *name = NULL); virtual ~Stream(); int putc(int c) { fflush(_file); return std::fputc(c, _file); } int puts(const char *s) { fflush(_file); return std::fputs(s, _file); } int getc() { fflush(_file); return std::fgetc(_file); } char *gets(char *s, int size) { fflush(_file); return std::fgets(s,size,_file);; } int printf(const char* format, ...); int scanf(const char* format, ...); operator std::FILE*() { return _file; } #ifdef MBED_RPC virtual const struct rpc_method *get_rpc_methods(); #endif protected: virtual int close(); virtual ssize_t write(const void* buffer, size_t length); virtual ssize_t read(void* buffer, size_t length); virtual off_t lseek(off_t offset, int whence); virtual int isatty(); virtual int fsync(); virtual off_t flen(); virtual int _putc(int c) = 0; virtual int _getc() = 0; std::FILE *_file; }; } // namespace mbed #endif