
test
mbed/drivers/LowPowerTimeout.h@0:d383e2dee0f7, 2020-07-06 (annotated)
- Committer:
- ommpy
- Date:
- Mon Jul 06 17:18:59 2020 +0530
- Revision:
- 0:d383e2dee0f7
first commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ommpy | 0:d383e2dee0f7 | 1 | /* mbed Microcontroller Library |
ommpy | 0:d383e2dee0f7 | 2 | * Copyright (c) 2015 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_LOWPOWERTIMEOUT_H |
ommpy | 0:d383e2dee0f7 | 18 | #define MBED_LOWPOWERTIMEOUT_H |
ommpy | 0:d383e2dee0f7 | 19 | |
ommpy | 0:d383e2dee0f7 | 20 | #include "platform/platform.h" |
ommpy | 0:d383e2dee0f7 | 21 | |
ommpy | 0:d383e2dee0f7 | 22 | #if DEVICE_LPTICKER || defined(DOXYGEN_ONLY) |
ommpy | 0:d383e2dee0f7 | 23 | |
ommpy | 0:d383e2dee0f7 | 24 | #include "hal/lp_ticker_api.h" |
ommpy | 0:d383e2dee0f7 | 25 | #include "drivers/LowPowerTicker.h" |
ommpy | 0:d383e2dee0f7 | 26 | #include "platform/NonCopyable.h" |
ommpy | 0:d383e2dee0f7 | 27 | |
ommpy | 0:d383e2dee0f7 | 28 | namespace mbed { |
ommpy | 0:d383e2dee0f7 | 29 | /** \addtogroup drivers */ |
ommpy | 0:d383e2dee0f7 | 30 | |
ommpy | 0:d383e2dee0f7 | 31 | /** Low Power Timout |
ommpy | 0:d383e2dee0f7 | 32 | * |
ommpy | 0:d383e2dee0f7 | 33 | * @note Synchronization level: Interrupt safe |
ommpy | 0:d383e2dee0f7 | 34 | * @ingroup drivers |
ommpy | 0:d383e2dee0f7 | 35 | */ |
ommpy | 0:d383e2dee0f7 | 36 | class LowPowerTimeout : public LowPowerTicker, private NonCopyable<LowPowerTimeout> { |
ommpy | 0:d383e2dee0f7 | 37 | #if !defined(DOXYGEN_ONLY) |
ommpy | 0:d383e2dee0f7 | 38 | private: |
ommpy | 0:d383e2dee0f7 | 39 | virtual void handler(void) |
ommpy | 0:d383e2dee0f7 | 40 | { |
ommpy | 0:d383e2dee0f7 | 41 | _function.call(); |
ommpy | 0:d383e2dee0f7 | 42 | } |
ommpy | 0:d383e2dee0f7 | 43 | #endif |
ommpy | 0:d383e2dee0f7 | 44 | }; |
ommpy | 0:d383e2dee0f7 | 45 | |
ommpy | 0:d383e2dee0f7 | 46 | } |
ommpy | 0:d383e2dee0f7 | 47 | |
ommpy | 0:d383e2dee0f7 | 48 | #endif |
ommpy | 0:d383e2dee0f7 | 49 | |
ommpy | 0:d383e2dee0f7 | 50 | #endif |