Home
last modified time | relevance | path

Searched refs:WKSTS (Results 1 – 10 of 10) sorted by relevance

/hal_nuvoton-2.7.6/m48x/StdDriver/inc/
Dusci_uart.h396 #define UUART_GET_WAKEUP_FLAG(uuart) ((uuart)->WKSTS & UUART_WKSTS_WKF_Msk ? 1: 0 )
409 #define UUART_CLR_WAKEUP_FLAG(uuart) ((uuart)->WKSTS = UUART_WKSTS_WKF_Msk)
Dusci_spi.h217 #define USPI_GET_WAKEUP_FLAG(uspi) ( ((uspi)->WKSTS & USPI_WKSTS_WKF_Msk) == USPI_WKSTS_WKF_Msk ? 1…
225 #define USPI_CLR_WAKEUP_FLAG(uspi) ( (uspi)->WKSTS |= USPI_WKSTS_WKF_Msk)
Dusci_i2c.h184 #define UI2C_GET_WAKEUP_FLAG(ui2c) (((ui2c)->WKSTS & UI2C_WKSTS_WKF_Msk) == UI2C_WKSTS_WKF_Msk ? 1:…
196 #define UI2C_CLR_WAKEUP_FLAG(ui2c) ((ui2c)->WKSTS = UI2C_WKSTS_WKF_Msk)
Di2c.h160 #define I2C_GET_WAKEUP_FLAG(i2c) ( ((i2c)->WKSTS & I2C_WKSTS_WKIF_Msk) == I2C_WKSTS_WKIF_Msk ? 1:0 …
172 #define I2C_CLEAR_WAKEUP_FLAG(i2c) ((i2c)->WKSTS = I2C_WKSTS_WKIF_Msk)
/hal_nuvoton-2.7.6/m48x/Devices/M480/Include/
Dui2c_reg.h393 …__IO uint32_t WKSTS; /*!< [0x0058] USCI Wake-up Status Register … member
Duspi_reg.h453 …__IO uint32_t WKSTS; /*!< [0x0058] USCI Wake-up Status Register … member
Duuart_reg.h449 …__IO uint32_t WKSTS; /*!< [0x0058] USCI Wake-up Status Register … member
Di2c_reg.h482 …__IO uint32_t WKSTS; /*!< [0x0040] I2C Wake-up Status Register … member
Duart_reg.h847 …__IO uint32_t WKSTS; /*!< [0x0044] UART Wake-up Status Register … member
/hal_nuvoton-2.7.6/m48x/StdDriver/src/
Duart.c65 uart->WKSTS = UART_WKSTS_CTSWKF_Msk | UART_WKSTS_DATWKF_Msk | in UART_ClearIntFlag()