mbed libraries for KL25Z

Dependents:   FRDM_RGBLED

Committer:
emilmont
Date:
Mon Feb 18 09:41:56 2013 +0000
Revision:
9:663789d7729f
Parent:
8:c14af7958ef5
Update mbed-KL25Z to latest build

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 9:663789d7729f 1 /* mbed Microcontroller Library
emilmont 9:663789d7729f 2 * Copyright (c) 2006-2013 ARM Limited
emilmont 9:663789d7729f 3 *
emilmont 9:663789d7729f 4 * Licensed under the Apache License, Version 2.0 (the "License");
emilmont 9:663789d7729f 5 * you may not use this file except in compliance with the License.
emilmont 9:663789d7729f 6 * You may obtain a copy of the License at
emilmont 9:663789d7729f 7 *
emilmont 9:663789d7729f 8 * http://www.apache.org/licenses/LICENSE-2.0
emilmont 9:663789d7729f 9 *
emilmont 9:663789d7729f 10 * Unless required by applicable law or agreed to in writing, software
emilmont 9:663789d7729f 11 * distributed under the License is distributed on an "AS IS" BASIS,
emilmont 9:663789d7729f 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
emilmont 9:663789d7729f 13 * See the License for the specific language governing permissions and
emilmont 9:663789d7729f 14 * limitations under the License.
emilmont 8:c14af7958ef5 15 */
emilmont 0:8024c367e29f 16 #ifndef MBED_STREAM_H
emilmont 0:8024c367e29f 17 #define MBED_STREAM_H
emilmont 0:8024c367e29f 18
emilmont 0:8024c367e29f 19 #include "platform.h"
emilmont 9:663789d7729f 20 #include "FileLike.h"
emilmont 0:8024c367e29f 21
emilmont 0:8024c367e29f 22 namespace mbed {
emilmont 0:8024c367e29f 23
emilmont 9:663789d7729f 24 class Stream : public FileLike {
emilmont 0:8024c367e29f 25
emilmont 0:8024c367e29f 26 public:
emilmont 9:663789d7729f 27 Stream(const char *name=NULL);
emilmont 0:8024c367e29f 28 virtual ~Stream();
emilmont 0:8024c367e29f 29
emilmont 8:c14af7958ef5 30 int putc(int c);
emilmont 8:c14af7958ef5 31 int puts(const char *s);
emilmont 8:c14af7958ef5 32 int getc();
emilmont 8:c14af7958ef5 33 char *gets(char *s, int size);
emilmont 0:8024c367e29f 34 int printf(const char* format, ...);
emilmont 0:8024c367e29f 35 int scanf(const char* format, ...);
emilmont 9:663789d7729f 36
emilmont 8:c14af7958ef5 37 operator std::FILE*() {return _file;}
emilmont 0:8024c367e29f 38
emilmont 0:8024c367e29f 39 protected:
emilmont 0:8024c367e29f 40 virtual int close();
emilmont 0:8024c367e29f 41 virtual ssize_t write(const void* buffer, size_t length);
emilmont 0:8024c367e29f 42 virtual ssize_t read(void* buffer, size_t length);
emilmont 0:8024c367e29f 43 virtual off_t lseek(off_t offset, int whence);
emilmont 0:8024c367e29f 44 virtual int isatty();
emilmont 0:8024c367e29f 45 virtual int fsync();
emilmont 0:8024c367e29f 46 virtual off_t flen();
emilmont 0:8024c367e29f 47
emilmont 0:8024c367e29f 48 virtual int _putc(int c) = 0;
emilmont 0:8024c367e29f 49 virtual int _getc() = 0;
emilmont 9:663789d7729f 50
emilmont 0:8024c367e29f 51 std::FILE *_file;
emilmont 0:8024c367e29f 52 };
emilmont 0:8024c367e29f 53
emilmont 0:8024c367e29f 54 } // namespace mbed
emilmont 0:8024c367e29f 55
emilmont 0:8024c367e29f 56 #endif