Mistake on this page?
Report an issue in GitHub or email us
sleep_api_tests.h
1 /* mbed Microcontroller Library
2  * Copyright (c) 2017 ARM Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /** \addtogroup hal_sleep_tests */
18 /** @{*/
19 
20 #ifndef MBED_SLEEP_API_TESTS_H
21 #define MBED_SLEEP_API_TESTS_H
22 
23 #include "device.h"
24 
25 #if DEVICE_SLEEP
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 /** High frequency ticker interrupt can wake up from sleep (locked deep-sleep).
32  *
33  * Given is an environment with high frequency ticker.
34  * When the board enters sleep mode.
35  * Then the board can be wake up from the sleep by high frequency ticker interrupt and
36  * wake-up time should be less than 10 us.
37  */
38 void sleep_usticker_test();
39 
40 /** Low power ticker interrupt to wake up from deep-sleep (unlocked deep-sleep).
41  *
42  * Given is an environment with low power ticker.
43  * When the board enters deep-sleep mode.
44  * Then the board can be wake up from the sleep by low power ticker interrupt and
45  * wake-up time should be less than 10 ms.
46  *
47  */
49 
50 /** High speed clocks are turned off in deep-sleep (unlocked deep-sleep)
51  *
52  * Given is an environment with high frequency ticker.
53  * When the board enters deep-sleep mode.
54  * Then high frequency ticker does not count while the board is in the deep-sleep mode.
55  *
56  */
58 
59 /**@}*/
60 
61 #ifdef __cplusplus
62 }
63 #endif
64 
65 #endif
66 
67 #endif
68 
69 /**@}*/
void deepsleep_lpticker_test()
Low power ticker interrupt to wake up from deep-sleep (unlocked deep-sleep).
void sleep_usticker_test()
High frequency ticker interrupt can wake up from sleep (locked deep-sleep).
void deepsleep_high_speed_clocks_turned_off_test()
High speed clocks are turned off in deep-sleep (unlocked deep-sleep)
Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.