Home
last modified time | relevance | path

Searched refs:wakeup (Results 1 – 25 of 61) sorted by relevance

123

/bsp/fm33lc026/libraries/FM33LC0xx_FL_Driver/Inc/
A Dfm33lc0xx_fl_gpio.h1807 …return (uint32_t)(READ_BIT(GPIOx->PINWKEN, ((wakeup & 0xff) << 0x0U)) == ((wakeup & 0xff) << 0x0U)… in FL_GPIO_IsEnabledWakeup()
1825 __STATIC_INLINE void FL_GPIO_EnableWakeup(GPIO_COMMON_Type *GPIOx, uint32_t wakeup) in FL_GPIO_EnableWakeup() argument
1827 SET_BIT(GPIOx->PINWKEN, ((wakeup & 0xff) << 0x0U)); in FL_GPIO_EnableWakeup()
1845 __STATIC_INLINE void FL_GPIO_DisableWakeup(GPIO_COMMON_Type *GPIOx, uint32_t wakeup) in FL_GPIO_DisableWakeup() argument
1847 CLEAR_BIT(GPIOx->PINWKEN, ((wakeup & 0xff) << 0x0U)); in FL_GPIO_DisableWakeup()
1874 MODIFY_REG(GPIOx->PINWKEN, GPIO_PINWKEN_WKISEL_Msk, wakeup); in FL_GPIO_SetWakeupInterruptEntry()
1897 MODIFY_REG(GPIOx->PINWKEN, (wakeup << GPIO_PINWKEN_SEL_Pos), (wakeup * mode)); in FL_GPIO_SetWakeupEdge()
1917 __STATIC_INLINE uint32_t FL_GPIO_GetWakeupEdge(GPIO_COMMON_Type *GPIOx, uint32_t wakeup) in FL_GPIO_GetWakeupEdge() argument
1919 return (uint32_t)(READ_BIT(GPIOx->PINWKEN, (wakeup << GPIO_PINWKEN_SEL_Pos)) / wakeup); in FL_GPIO_GetWakeupEdge()
1933 FL_ErrorStatus FL_WKUP_Init(FL_WKUP_InitTypeDef *initStruct, uint32_t wakeup);
[all …]
/bsp/samd21/sam_d2x_asflib/sam0/drivers/aon_sleep_timer/
A Daon_sleep_timer.c72 config->wakeup = AON_SLEEP_TIMER_WAKEUP_ARM; in aon_sleep_timer_get_config_defaults()
179 if (config->wakeup == AON_SLEEP_TIMER_WAKEUP_ARM_BLE) { in aon_sleep_timer_init()
183 } else if (config->wakeup == AON_SLEEP_TIMER_WAKEUP_ARM) { in aon_sleep_timer_init()
A Daon_sleep_timer.h166 enum aon_sleep_timer_wakeup wakeup; member
/bsp/fm33lc026/libraries/FM33LC0xx_FL_Driver/Src/
A Dfm33lc0xx_fl_gpio.c239 FL_ErrorStatus FL_WKUP_Init(FL_WKUP_InitTypeDef *initStruct, uint32_t wakeup) in FL_WKUP_Init() argument
242 assert_param(IS_FL_GPIO_WKUP_NUM(wakeup)); in FL_WKUP_Init()
244 FL_GPIO_EnableWakeup(GPIO, wakeup); in FL_WKUP_Init()
245 FL_GPIO_SetWakeupEdge(GPIO, wakeup, initStruct->polarity); in FL_WKUP_Init()
/bsp/stm32/stm32l010-st-nucleo/
A DREADME.md12 - 0.29 µA Standby mode (2 wakeup pins)
13 - 0.43 µA Stop mode (16 wakeup lines)
16 - 5 µs wakeup time (from Flash memory)
/bsp/stm32/stm32g071-st-nucleo/
A DREADME.md45 - Calendar RTC with alarm and periodic wakeup from Stop/Standby/Shutdown
47 …-mode Plus (1 Mbit/s) with extra current sink, one supporting SMBus/PMBus and wakeup from Stop mode
48 …two supporting ISO7816 interface, LIN, IrDA capability, auto baud rate detection and wakeup feature
51 - HDMI CEC interface, wakeup on header
/bsp/stm32/stm32f072-st-nucleo/
A DREADME.md60 - Calendar RTC with alarm and periodic wakeup from Stop/Standby
71 …supporting Fast Mode Plus (1 Mbit/s) with 20 mA current sink, one supporting SMBus/PMBus and wakeup
72 …d modem control, two with ISO7816 interface, LIN, IrDA, auto baud rate detection and wakeup feature
77 - HDMI CEC wakeup on header reception
/bsp/stm32/stm32g030-tiny-board/
A DREADME.md44 - Calendar RTC with alarm and periodic wakeup from Stop/Standby
46 …-mode Plus (1 Mbit/s) with extra current sink, one supporting SMBus/PMBus and wakeup from Stop mode
47 …one supporting ISO7816 interface, LIN, IrDA capability, auto baud rate detection and wakeup feature
/bsp/stm32/stm32l053-st-nucleo/
A DREADME.md21 - 0.27 μA Standby mode (2 wakeup pins)
22 - 0.4 μA Stop mode (16 wakeup lines)
25 - 3.5 μs wakeup time (from RAM)
26 - 5 μs wakeup time (from Flash memory)
/bsp/stm32/stm32g070-st-nucleo/
A DREADME.md41 - Calendar RTC with alarm and periodic wakeup from Stop/Standby
43 …-mode Plus (1 Mbit/s) with extra current sink, one supporting SMBus/PMBus and wakeup from Stop mode
44 …two supporting ISO7816 interface, LIN, IrDA capability, auto baud rate detection and wakeup feature
/bsp/stm32/stm32l412-st-nucleo/
A DREADME.md24 - 16 nA Shutdown mode (4 wakeup pins)
25 - 32 nA Standby mode (4 wakeup pins)
31 - 4 µs wakeup from Stop mode
/bsp/stm32/stm32l496-st-nucleo/
A DREADME.md21 - 25 nA Shutdown mode (5 wakeup pins)
22 - 108 nA Standby mode (5 wakeup pins)
28 - 5 µs wakeup from Stop mode
/bsp/stm32/stm32l433-st-nucleo/
A DREADME.md24 - 8 nA Shutdown mode (5 wakeup pins)
25 - 28 nA Standby mode (5 wakeup pins)
31 - 4 μs wakeup from Stop mode
/bsp/apm32/libraries/APM32E10x_Library/APM32E10x_StdPeriphDriver/src/
A Dapm32e10x_usart.c280 void USART_ConfigWakeUp(USART_T* usart, USART_WAKEUP_T wakeup) in USART_ConfigWakeUp() argument
282 usart->CTRL1_B.WUPMCFG = wakeup; in USART_ConfigWakeUp()
/bsp/apm32/libraries/APM32F10x_Library/APM32F10x_StdPeriphDriver/src/
A Dapm32f10x_usart.c279 void USART_ConfigWakeUp(USART_T* usart, USART_WAKEUP_T wakeup) in USART_ConfigWakeUp() argument
281 usart->CTRL1_B.WUPMCFG = wakeup; in USART_ConfigWakeUp()
/bsp/apm32/libraries/APM32S10x_Library/APM32S10x_StdPeriphDriver/src/
A Dapm32s10x_usart.c269 void USART_ConfigWakeUp(USART_T* usart, USART_WAKEUP_T wakeup) in USART_ConfigWakeUp() argument
271 usart->CTRL1_B.WUPMCFG = wakeup; in USART_ConfigWakeUp()
/bsp/stm32/stm32l476-st-nucleo/
A DREADME.md24 - 30 nA Shutdown mode (5 wakeup pins)
25 - 120 nA Standby mode (5 wakeup pins)
31 - 4 μs wakeup from Stop mode
/bsp/apm32/libraries/APM32F4xx_Library/APM32F4xx_StdPeriphDriver/src/
A Dapm32f4xx_usart.c396 void USART_ConfigWakeUp(USART_T *usart, USART_WAKEUP_T wakeup) in USART_ConfigWakeUp() argument
398 usart->CTRL1_B.WUPMCFG = wakeup; in USART_ConfigWakeUp()
/bsp/stm32/stm32l4r9-st-eval/
A DREADME.md27 - 按键:1个,wakeup(PC13),五向摇杆
/bsp/stm32/stm32f410-st-nucleo/
A DREADME.md32 - Stop (Flash in Stop mode, fast wakeup time): 40 μA Typ @ 25 °C; 49 μA max @25 °C
33 - Stop (Flash in Deep power down mode, fast wakeup time): down to 6 μA @ 25 °C; 14 μA max @25 °C
/bsp/stm32/stm32f413-st-nucleo/
A DREADME.md35 - Stop (Flash in Stop mode, fast wakeup time): 42 μA Typ.; 80 μA max @25 °C
36 - Stop (Flash in Deep power down mode, slow wakeup time): 15 μA Typ.; 46 μA max @25 °C
/bsp/stm32/stm32f411-st-nucleo/
A DREADME.md33 - Stop (Flash in Stop mode, fast wakeup time): 42 μA Typ @ 25C; 65 μA max @25 °C
34 - Stop (Flash in Deep power down mode, slow wakeup time): down to 9 μA @ 25 °C; 28 μA max @25 °C
/bsp/stm32/stm32f412-st-nucleo/
A DREADME.md37 - Stop (Flash in Stop mode, fast wakeup time): 50 μA Typ @ 25 °C; 75 μA max @25 °C
38 - Stop (Flash in Deep power down mode, slow wakeup time): down to 18 μA @ 25 °C; 40 μA max @25 °C
/bsp/apm32/libraries/APM32F4xx_Library/APM32F4xx_StdPeriphDriver/inc/
A Dapm32f4xx_usart.h269 void USART_ConfigWakeUp(USART_T* usart, USART_WAKEUP_T wakeup);
/bsp/apm32/libraries/APM32E10x_Library/APM32E10x_StdPeriphDriver/inc/
A Dapm32e10x_usart.h261 void USART_ConfigWakeUp(USART_T* usart, USART_WAKEUP_T wakeup);

Completed in 45 milliseconds

123