Home
last modified time | relevance | path

Searched refs:RegValTemp (Results 1 – 2 of 2) sorted by relevance

/hal_nxp-latest/s32/drivers/s32ze/Uart/include/
DLinflexd_Uart_Ip_HwAccess.h248 uint32 RegValTemp; in Linflexd_Uart_Ip_EnterInitMode() local
250 RegValTemp = Base->LINCR1; in Linflexd_Uart_Ip_EnterInitMode()
251 RegValTemp &= ~(LINFLEXD_LINCR1_SLEEP_MASK); in Linflexd_Uart_Ip_EnterInitMode()
252 RegValTemp |= LINFLEXD_LINCR1_INIT(1UL); in Linflexd_Uart_Ip_EnterInitMode()
253 Base->LINCR1 = RegValTemp; in Linflexd_Uart_Ip_EnterInitMode()
266 uint32 RegValTemp; in Linflexd_Uart_Ip_EnterNormalMode() local
268 RegValTemp = Base->LINCR1; in Linflexd_Uart_Ip_EnterNormalMode()
269 RegValTemp &= ~(LINFLEXD_LINCR1_SLEEP_MASK); in Linflexd_Uart_Ip_EnterNormalMode()
270 RegValTemp &= ~(LINFLEXD_LINCR1_INIT_MASK); in Linflexd_Uart_Ip_EnterNormalMode()
271 Base->LINCR1 = RegValTemp; in Linflexd_Uart_Ip_EnterNormalMode()
[all …]
/hal_nxp-latest/s32/drivers/s32ze/Uart/src/
DLinflexd_Uart_Ip.c2339 uint32 RegValTemp; in Linflexd_Uart_Ip_SetTransmitterState() local
2342 RegValTemp = Base->UARTCR; in Linflexd_Uart_Ip_SetTransmitterState()
2343 RegValTemp &= ~(LINFLEXD_UARTCR_TxEn_MASK); in Linflexd_Uart_Ip_SetTransmitterState()
2344 RegValTemp |= LINFLEXD_UARTCR_TxEn(Enable ? 1UL : 0UL); in Linflexd_Uart_Ip_SetTransmitterState()
2345 Base->UARTCR = RegValTemp; in Linflexd_Uart_Ip_SetTransmitterState()
2358 uint32 RegValTemp; in Linflexd_Uart_Ip_SetReceiverState() local
2361 RegValTemp = Base->UARTCR; in Linflexd_Uart_Ip_SetReceiverState()
2362 RegValTemp &= ~(LINFLEXD_UARTCR_RxEn_MASK); in Linflexd_Uart_Ip_SetReceiverState()
2363 RegValTemp |= LINFLEXD_UARTCR_RxEn(Enable ? 1UL : 0UL); in Linflexd_Uart_Ip_SetReceiverState()
2364 Base->UARTCR = RegValTemp; in Linflexd_Uart_Ip_SetReceiverState()
[all …]