Lines Matching refs:PowerControl
18 …- `Initialize`: must be called before powering the peripheral using `PowerControl`. This function …
24 …- `PowerControl`: Controls the power profile of the peripheral and needs to be called after `Initi…
42 …er, the API functions `GetVersion`, `GetCapabilities`, `Initialize`, `PowerControl`, `Uninitialize…
57 a=>b [label="PowerControl (ARM_POWER_FULL)", textcolor="red", linecolor="red"];
62 a=>b [label="PowerControl (ARM_POWER_LOW)"];
65 a=>b [label="PowerControl (ARM_POWER_OFF)", textcolor="red", linecolor="red"];
74 To start working with a peripheral the functions `Initialize` and `PowerControl` need to be called …
78 drv->PowerControl (ARM_POWER_FULL); // Power up peripheral, setup IRQ/DMA
82 …- `PowerControl` (`ARM_POWER_FULL`) sets the peripheral registers including interrupt (NVIC) and o…
86 To stop working with a peripheral the functions `PowerControl` and `Uninitialize` need to be called…
89 …drv->PowerControl (ARM_POWER_OFF); // Terminate any pending transfers, reset IRQ/DMA, power of…
93 The functions `PowerControl` and `Uninitialize` always execute and can be used to put the periphera…
95 …- `PowerControl` (`ARM_POWER_OFF`) terminates any pending data transfers with the peripheral, disa…
109 SPI1drv->PowerControl (ARM_POWER_FULL);
111 SPI1drv->PowerControl (ARM_POWER_OFF); // Stop SPI1
115 USART1drv->PowerControl (ARM_POWER_FULL);
117 USART1drv->PowerControl (ARM_POWER_OFF); // Stop USART1
153 int32_t (*PowerControl) (ARM_POWER_STATE state);