This is a repository for all my programs or modified programs.
Stream.h@0:72480818e4a9, 2016-09-11 (annotated)
- Committer:
- mturner5
- Date:
- Sun Sep 11 23:48:09 2016 +0000
- Revision:
- 0:72480818e4a9
Made delays for the LEDS and button presses
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mturner5 | 0:72480818e4a9 | 1 | /* mbed Microcontroller Library |
mturner5 | 0:72480818e4a9 | 2 | * Copyright (c) 2006-2013 ARM Limited |
mturner5 | 0:72480818e4a9 | 3 | * |
mturner5 | 0:72480818e4a9 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
mturner5 | 0:72480818e4a9 | 5 | * you may not use this file except in compliance with the License. |
mturner5 | 0:72480818e4a9 | 6 | * You may obtain a copy of the License at |
mturner5 | 0:72480818e4a9 | 7 | * |
mturner5 | 0:72480818e4a9 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
mturner5 | 0:72480818e4a9 | 9 | * |
mturner5 | 0:72480818e4a9 | 10 | * Unless required by applicable law or agreed to in writing, software |
mturner5 | 0:72480818e4a9 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
mturner5 | 0:72480818e4a9 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
mturner5 | 0:72480818e4a9 | 13 | * See the License for the specific language governing permissions and |
mturner5 | 0:72480818e4a9 | 14 | * limitations under the License. |
mturner5 | 0:72480818e4a9 | 15 | */ |
mturner5 | 0:72480818e4a9 | 16 | #ifndef MBED_STREAM_H |
mturner5 | 0:72480818e4a9 | 17 | #define MBED_STREAM_H |
mturner5 | 0:72480818e4a9 | 18 | |
mturner5 | 0:72480818e4a9 | 19 | #include "platform.h" |
mturner5 | 0:72480818e4a9 | 20 | #include "FileLike.h" |
mturner5 | 0:72480818e4a9 | 21 | |
mturner5 | 0:72480818e4a9 | 22 | namespace mbed { |
mturner5 | 0:72480818e4a9 | 23 | |
mturner5 | 0:72480818e4a9 | 24 | class Stream : public FileLike { |
mturner5 | 0:72480818e4a9 | 25 | |
mturner5 | 0:72480818e4a9 | 26 | public: |
mturner5 | 0:72480818e4a9 | 27 | Stream(const char *name=NULL); |
mturner5 | 0:72480818e4a9 | 28 | virtual ~Stream(); |
mturner5 | 0:72480818e4a9 | 29 | |
mturner5 | 0:72480818e4a9 | 30 | int putc(int c); |
mturner5 | 0:72480818e4a9 | 31 | int puts(const char *s); |
mturner5 | 0:72480818e4a9 | 32 | int getc(); |
mturner5 | 0:72480818e4a9 | 33 | char *gets(char *s, int size); |
mturner5 | 0:72480818e4a9 | 34 | int printf(const char* format, ...); |
mturner5 | 0:72480818e4a9 | 35 | int scanf(const char* format, ...); |
mturner5 | 0:72480818e4a9 | 36 | |
mturner5 | 0:72480818e4a9 | 37 | operator std::FILE*() {return _file;} |
mturner5 | 0:72480818e4a9 | 38 | |
mturner5 | 0:72480818e4a9 | 39 | protected: |
mturner5 | 0:72480818e4a9 | 40 | virtual int close(); |
mturner5 | 0:72480818e4a9 | 41 | virtual ssize_t write(const void* buffer, size_t length); |
mturner5 | 0:72480818e4a9 | 42 | virtual ssize_t read(void* buffer, size_t length); |
mturner5 | 0:72480818e4a9 | 43 | virtual off_t lseek(off_t offset, int whence); |
mturner5 | 0:72480818e4a9 | 44 | virtual int isatty(); |
mturner5 | 0:72480818e4a9 | 45 | virtual int fsync(); |
mturner5 | 0:72480818e4a9 | 46 | virtual off_t flen(); |
mturner5 | 0:72480818e4a9 | 47 | |
mturner5 | 0:72480818e4a9 | 48 | virtual int _putc(int c) = 0; |
mturner5 | 0:72480818e4a9 | 49 | virtual int _getc() = 0; |
mturner5 | 0:72480818e4a9 | 50 | |
mturner5 | 0:72480818e4a9 | 51 | std::FILE *_file; |
mturner5 | 0:72480818e4a9 | 52 | |
mturner5 | 0:72480818e4a9 | 53 | /* disallow copy constructor and assignment operators */ |
mturner5 | 0:72480818e4a9 | 54 | private: |
mturner5 | 0:72480818e4a9 | 55 | Stream(const Stream&); |
mturner5 | 0:72480818e4a9 | 56 | Stream & operator = (const Stream&); |
mturner5 | 0:72480818e4a9 | 57 | }; |
mturner5 | 0:72480818e4a9 | 58 | |
mturner5 | 0:72480818e4a9 | 59 | } // namespace mbed |
mturner5 | 0:72480818e4a9 | 60 | |
mturner5 | 0:72480818e4a9 | 61 | #endif |