IOTIO

Dependencies:   Nucleo_BLE_API_IOTIO Nucleo_BLE_BlueNRG Nucleo_BLE_DemoApp Nucleo_Sensor_Shield mbed

Dependents:   Nucleo_BLE_Demo_IOTIO

Fork of Nucleo_BLE_Demo by Cortex Challenge Team

Committer:
16038618
Date:
Wed Mar 08 10:24:56 2017 +0000
Revision:
2:c69117fc79da
Parent:
1:4bdfa7d7e8bf
IOTIO

Who changed what in which revision?

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