Lines Matching refs:a

14 ## 1. Introduction <a id="introduction"></a>
16 …CU low-power state, peripheral, memory or clock. Each of these states can be specific to a device.
18a software framework available for bare-metal code and FreeRTOS applications, aiming at facilitati…
22 ## 2. Glossary <a id="glossary"></a>
32 ## 3. SDK Power Manager <a id="sdkpm"></a>
34 ### 1. Features <a id="features"></a>
44 …tch the constraints of the low-power state, the SDK Power Manager will find a lighter low-power st…
50 ### 2. Architecture <a id="architecture"></a>
60 …stead, the application defines the resource constraints to keep enabled for a given low-power stat…
72 - **PM_RegisterNotify** --> OPTIONAL ; Registers a notify element into the selected group. The call…
76 - **PM_RegisterTimerController** --> OPTIONAL ; Register a timer as a wakeup source, to be called w…
78 … Manager defined by the user, and/or for a low-power state. To easily define constraints, the user…
88 …fication groups of power transitions, i.e entry/exit of a state. It can be useful to re-enable a p…
100 ## 4. Application Example <a id="appex"></a>
104a bare-metal application based on the [i.MX RT500 EVK](https://www.nxp.com/design/development-boar…
108 The first step defines the resources the user wants to keep ON/retain for a given low-power state. …
116 For example, defining **PM_RESC_ACMP_ACTIVE** will keep the resource ACMP active for a low-power st…
120 …datory resources are kept ON for deep sleep that will be specified later as a power mode constrain…
182a constraint is set on the low power mode, and on the resources. The Power Manager will check if t…
188a low power mode constraint is set, without resources constraints. Thus the Power Manager will tur…
198 To enter in a low power mode, the following Power Manager function must be used:
201 The *durationTicks* parameter can be useful and leveraged when an exit latency is declared for a lo…
203 The exit latency is declared by the developer for a low-power state. For example if the deep-sleep …
239a low power mode constraint or resource constraints has been set multiple times through *PM_SetCon…
248 ## 5. APIs references <a id="apiref"></a>
277 The target power state is determined based on two factors: a. The input parameter should be larger …
424 ## 6. Conclusion <a id="conclusion"></a>
428 The Power Manager is a great option to reduce power consumption in low power states by managing all…