Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-dev by
targets/TARGET_ONSEMI/TARGET_NCS36510/fncs36510_sleep.h@180:d79f997829d6, 2017-12-18 (annotated)
- Committer:
- Anythingconnected
- Date:
- Mon Dec 18 10:14:27 2017 +0000
- Revision:
- 180:d79f997829d6
- Parent:
- 160:d5399cc887bb
Getting byte by byte read to work
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 149:156823d33999 | 1 | /** |
<> | 149:156823d33999 | 2 | ******************************************************************************* |
<> | 149:156823d33999 | 3 | * @file sleep.c |
<> | 149:156823d33999 | 4 | * @brief Implementation of a sleep functionality |
<> | 149:156823d33999 | 5 | * @internal |
<> | 149:156823d33999 | 6 | * @author ON Semiconductor |
<> | 149:156823d33999 | 7 | * $Rev: $ |
<> | 149:156823d33999 | 8 | * $Date: $ |
<> | 149:156823d33999 | 9 | ****************************************************************************** |
<> | 149:156823d33999 | 10 | * Copyright 2016 Semiconductor Components Industries LLC (d/b/a ON Semiconductor). |
<> | 149:156823d33999 | 11 | * All rights reserved. This software and/or documentation is licensed by ON Semiconductor |
<> | 149:156823d33999 | 12 | * under limited terms and conditions. The terms and conditions pertaining to the software |
<> | 149:156823d33999 | 13 | * and/or documentation are available at http://www.onsemi.com/site/pdf/ONSEMI_T&C.pdf |
<> | 149:156823d33999 | 14 | * (ON Semiconductor Standard Terms and Conditions of Sale, Section 8 Software) and |
<> | 149:156823d33999 | 15 | * if applicable the software license agreement. Do not use this software and/or |
<> | 149:156823d33999 | 16 | * documentation unless you have carefully read and you agree to the limited terms and |
<> | 149:156823d33999 | 17 | * conditions. By using this software and/or documentation, you agree to the limited |
<> | 149:156823d33999 | 18 | * terms and conditions. |
<> | 149:156823d33999 | 19 | * |
<> | 149:156823d33999 | 20 | * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED |
<> | 149:156823d33999 | 21 | * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF |
<> | 149:156823d33999 | 22 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. |
<> | 149:156823d33999 | 23 | * ON SEMICONDUCTOR SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, |
<> | 149:156823d33999 | 24 | * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
<> | 149:156823d33999 | 25 | * @endinternal |
<> | 149:156823d33999 | 26 | * |
<> | 149:156823d33999 | 27 | * @ingroup sleep |
<> | 149:156823d33999 | 28 | * |
<> | 149:156823d33999 | 29 | * @details |
<> | 149:156823d33999 | 30 | * Sleep implementation TBD - Dummy function is fine for first release |
<> | 149:156823d33999 | 31 | * |
<> | 149:156823d33999 | 32 | */ |
<> | 149:156823d33999 | 33 | |
<> | 149:156823d33999 | 34 | #ifndef SLEEP_H_ |
<> | 149:156823d33999 | 35 | #define SLEEP_H_ |
<> | 149:156823d33999 | 36 | |
<> | 149:156823d33999 | 37 | /* Orion specific includes */ |
<> | 149:156823d33999 | 38 | #include "types.h" |
<> | 149:156823d33999 | 39 | #include "memory_map.h" |
<> | 149:156823d33999 | 40 | #include "gpio_map.h" |
<> | 149:156823d33999 | 41 | #include "pad_map.h" |
<> | 149:156823d33999 | 42 | #include "crossbar.h" |
<> | 149:156823d33999 | 43 | #include "clock.h" |
<> | 149:156823d33999 | 44 | |
<> | 150:02e0a0aed4ec | 45 | #define SLEEP_TYPE_NONE 0 |
<> | 149:156823d33999 | 46 | #define SLEEP_TYPE_SLEEP 1 |
<> | 149:156823d33999 | 47 | #define SLEEP_TYPE_DEEPSLEEP 2 |
<> | 150:02e0a0aed4ec | 48 | #define SLEEP_TYPE_COMA 3 |
<> | 149:156823d33999 | 49 | |
<> | 149:156823d33999 | 50 | #define SLEEP_TYPE_DEFAULT SLEEP_TYPE_DEEPSLEEP |
<> | 149:156823d33999 | 51 | |
<> | 149:156823d33999 | 52 | #define SLEEP_DURATION_SLEEP_MIN 10 /* msec */ |
<> | 149:156823d33999 | 53 | #define SLEEP_DURATION_SLEEP_MAX 200 /* msec */ |
<> | 149:156823d33999 | 54 | #define SLEEP_DURATION_DEEPSLEEP_MAX 500 /* msec */ |
<> | 149:156823d33999 | 55 | #define SLEEP_DURATION_COMA_MAX 1000000000 /* TODO 1000 sec */ |
<> | 149:156823d33999 | 56 | |
<> | 150:02e0a0aed4ec | 57 | void fncs36510_sleep(void); |
<> | 150:02e0a0aed4ec | 58 | |
<> | 150:02e0a0aed4ec | 59 | void fncs36510_deepsleep(void); |
<> | 150:02e0a0aed4ec | 60 | |
<> | 150:02e0a0aed4ec | 61 | void fncs36510_coma(void); |
<> | 149:156823d33999 | 62 | |
<> | 149:156823d33999 | 63 | #endif // SLEEP_H_ |