Home Alert System

Dependencies:   PWM_Tone_Library DHT

Committer:
ethaderu
Date:
Tue Mar 05 02:34:44 2019 +0000
Revision:
3:78f223d34f36
Publish 1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ethaderu 3:78f223d34f36 1 /* mbed Microcontroller Library
ethaderu 3:78f223d34f36 2 * Copyright (c) 2006-2012 ARM Limited
ethaderu 3:78f223d34f36 3 *
ethaderu 3:78f223d34f36 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
ethaderu 3:78f223d34f36 5 * of this software and associated documentation files (the "Software"), to deal
ethaderu 3:78f223d34f36 6 * in the Software without restriction, including without limitation the rights
ethaderu 3:78f223d34f36 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
ethaderu 3:78f223d34f36 8 * copies of the Software, and to permit persons to whom the Software is
ethaderu 3:78f223d34f36 9 * furnished to do so, subject to the following conditions:
ethaderu 3:78f223d34f36 10 *
ethaderu 3:78f223d34f36 11 * The above copyright notice and this permission notice shall be included in
ethaderu 3:78f223d34f36 12 * all copies or substantial portions of the Software.
ethaderu 3:78f223d34f36 13 *
ethaderu 3:78f223d34f36 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
ethaderu 3:78f223d34f36 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
ethaderu 3:78f223d34f36 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
ethaderu 3:78f223d34f36 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
ethaderu 3:78f223d34f36 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ethaderu 3:78f223d34f36 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
ethaderu 3:78f223d34f36 20 * SOFTWARE.
ethaderu 3:78f223d34f36 21 */
ethaderu 3:78f223d34f36 22 #ifndef MUTEX_H
ethaderu 3:78f223d34f36 23 #define MUTEX_H
ethaderu 3:78f223d34f36 24
ethaderu 3:78f223d34f36 25 #include <stdint.h>
ethaderu 3:78f223d34f36 26 #include "cmsis_os.h"
ethaderu 3:78f223d34f36 27
ethaderu 3:78f223d34f36 28 namespace rtos {
ethaderu 3:78f223d34f36 29
ethaderu 3:78f223d34f36 30 /** The Mutex class is used to synchronise the execution of threads.
ethaderu 3:78f223d34f36 31 This is for example used to protect access to a shared resource.
ethaderu 3:78f223d34f36 32 */
ethaderu 3:78f223d34f36 33 class Mutex {
ethaderu 3:78f223d34f36 34 public:
ethaderu 3:78f223d34f36 35 /** Create and Initialize a Mutex object */
ethaderu 3:78f223d34f36 36 Mutex();
ethaderu 3:78f223d34f36 37
ethaderu 3:78f223d34f36 38 /** Wait until a Mutex becomes available.
ethaderu 3:78f223d34f36 39 @param millisec timeout value or 0 in case of no time-out. (default: osWaitForever)
ethaderu 3:78f223d34f36 40 @return status code that indicates the execution status of the function.
ethaderu 3:78f223d34f36 41 */
ethaderu 3:78f223d34f36 42 osStatus lock(uint32_t millisec=osWaitForever);
ethaderu 3:78f223d34f36 43
ethaderu 3:78f223d34f36 44 /** Try to lock the mutex, and return immediately
ethaderu 3:78f223d34f36 45 @return true if the mutex was acquired, false otherwise.
ethaderu 3:78f223d34f36 46 */
ethaderu 3:78f223d34f36 47 bool trylock();
ethaderu 3:78f223d34f36 48
ethaderu 3:78f223d34f36 49 /** Unlock the mutex that has previously been locked by the same thread
ethaderu 3:78f223d34f36 50 @return status code that indicates the execution status of the function.
ethaderu 3:78f223d34f36 51 */
ethaderu 3:78f223d34f36 52 osStatus unlock();
ethaderu 3:78f223d34f36 53
ethaderu 3:78f223d34f36 54 ~Mutex();
ethaderu 3:78f223d34f36 55
ethaderu 3:78f223d34f36 56 private:
ethaderu 3:78f223d34f36 57 osMutexId _osMutexId;
ethaderu 3:78f223d34f36 58 osMutexDef_t _osMutexDef;
ethaderu 3:78f223d34f36 59 #ifdef CMSIS_OS_RTX
ethaderu 3:78f223d34f36 60 #ifdef __MBED_CMSIS_RTOS_CA9
ethaderu 3:78f223d34f36 61 int32_t _mutex_data[4];
ethaderu 3:78f223d34f36 62 #else
ethaderu 3:78f223d34f36 63 int32_t _mutex_data[3];
ethaderu 3:78f223d34f36 64 #endif
ethaderu 3:78f223d34f36 65 #endif
ethaderu 3:78f223d34f36 66 };
ethaderu 3:78f223d34f36 67
ethaderu 3:78f223d34f36 68 }
ethaderu 3:78f223d34f36 69 #endif