test

Dependencies:   mbed Watchdog

Dependents:   STM32-MC_node

Committer:
ommpy
Date:
Wed Aug 26 14:26:27 2020 +0530
Revision:
11:32eeb052cda5
Parent:
0:d383e2dee0f7
added temp sensor in code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ommpy 0:d383e2dee0f7 1 /* mbed Microcontroller Library
ommpy 0:d383e2dee0f7 2 * Copyright (c) 2006-2013 ARM Limited
ommpy 0:d383e2dee0f7 3 * SPDX-License-Identifier: Apache-2.0
ommpy 0:d383e2dee0f7 4 *
ommpy 0:d383e2dee0f7 5 * Licensed under the Apache License, Version 2.0 (the "License");
ommpy 0:d383e2dee0f7 6 * you may not use this file except in compliance with the License.
ommpy 0:d383e2dee0f7 7 * You may obtain a copy of the License at
ommpy 0:d383e2dee0f7 8 *
ommpy 0:d383e2dee0f7 9 * http://www.apache.org/licenses/LICENSE-2.0
ommpy 0:d383e2dee0f7 10 *
ommpy 0:d383e2dee0f7 11 * Unless required by applicable law or agreed to in writing, software
ommpy 0:d383e2dee0f7 12 * distributed under the License is distributed on an "AS IS" BASIS,
ommpy 0:d383e2dee0f7 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ommpy 0:d383e2dee0f7 14 * See the License for the specific language governing permissions and
ommpy 0:d383e2dee0f7 15 * limitations under the License.
ommpy 0:d383e2dee0f7 16 */
ommpy 0:d383e2dee0f7 17 #ifndef MBED_FILELIKE_H
ommpy 0:d383e2dee0f7 18 #define MBED_FILELIKE_H
ommpy 0:d383e2dee0f7 19
ommpy 0:d383e2dee0f7 20 #include "platform/mbed_toolchain.h"
ommpy 0:d383e2dee0f7 21 #include "platform/FileBase.h"
ommpy 0:d383e2dee0f7 22 #include "platform/FileHandle.h"
ommpy 0:d383e2dee0f7 23 #include "platform/NonCopyable.h"
ommpy 0:d383e2dee0f7 24
ommpy 0:d383e2dee0f7 25 namespace mbed {
ommpy 0:d383e2dee0f7 26 /** \addtogroup platform */
ommpy 0:d383e2dee0f7 27 /** @{*/
ommpy 0:d383e2dee0f7 28 /**
ommpy 0:d383e2dee0f7 29 * \defgroup platform_FileLike FileLike class
ommpy 0:d383e2dee0f7 30 * @{
ommpy 0:d383e2dee0f7 31 */
ommpy 0:d383e2dee0f7 32 /** Class FileLike
ommpy 0:d383e2dee0f7 33 *
ommpy 0:d383e2dee0f7 34 * A file-like object is one that can be opened with fopen by
ommpy 0:d383e2dee0f7 35 * fopen("/name", mode).
ommpy 0:d383e2dee0f7 36 *
ommpy 0:d383e2dee0f7 37 * @note Synchronization level: Set by subclass
ommpy 0:d383e2dee0f7 38 */
ommpy 0:d383e2dee0f7 39 class FileLike : public FileHandle, public FileBase, private NonCopyable<FileLike> {
ommpy 0:d383e2dee0f7 40 public:
ommpy 0:d383e2dee0f7 41 /** Constructor FileLike
ommpy 0:d383e2dee0f7 42 *
ommpy 0:d383e2dee0f7 43 * @param name The name to use to open the file.
ommpy 0:d383e2dee0f7 44 */
ommpy 0:d383e2dee0f7 45 FileLike(const char *name = NULL) : FileBase(name, FilePathType) {}
ommpy 0:d383e2dee0f7 46 virtual ~FileLike() {}
ommpy 0:d383e2dee0f7 47 };
ommpy 0:d383e2dee0f7 48
ommpy 0:d383e2dee0f7 49 /**@}*/
ommpy 0:d383e2dee0f7 50
ommpy 0:d383e2dee0f7 51 /**@}*/
ommpy 0:d383e2dee0f7 52
ommpy 0:d383e2dee0f7 53 } // namespace mbed
ommpy 0:d383e2dee0f7 54
ommpy 0:d383e2dee0f7 55 #endif