Home
last modified time | relevance | path

Searched refs:USART_CR3_CTSE (Results 1 – 22 of 22) sorted by relevance

/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Inc/
Dstm32l1xx_hal_uart.h202 #define UART_HWCONTROL_CTS ((uint32_t)USART_CR3_CTSE)
203 #define UART_HWCONTROL_RTS_CTS ((uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE))
502 SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
503 (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_CTSE; \
522 CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
523 (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_CTSE); \
Dstm32l1xx_ll_usart.h298 #define LL_USART_HWCONTROL_CTS USART_CR3_CTSE /*!< CTS mode …
299 #define LL_USART_HWCONTROL_RTS_CTS (USART_CR3_RTSE | USART_CR3_CTSE) /*!< CTS and R…
924 SET_BIT(USARTx->CR3, USART_CR3_CTSE); in LL_USART_EnableCTSHWFlowCtrl()
937 CLEAR_BIT(USARTx->CR3, USART_CR3_CTSE); in LL_USART_DisableCTSHWFlowCtrl()
956 MODIFY_REG(USARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE, HardwareFlowControl); in LL_USART_SetHWFlowCtrl()
974 return (uint32_t)(READ_BIT(USARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE)); in LL_USART_GetHWFlowCtrl()
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/
Dstm32l0xx_hal_uart.h306 #define UART_HWCONTROL_CTS ((uint32_t)USART_CR3_CTSE) /*!< …
307 #define UART_HWCONTROL_RTS_CTS ((uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE)) /*!< …
948 SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
949 (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_CTSE; \
966 CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
967 (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_CTSE); \
Dstm32l0xx_ll_lpuart.h308 #define LL_LPUART_HWCONTROL_CTS USART_CR3_CTSE /*!< CTS mode enabled…
309 #define LL_LPUART_HWCONTROL_RTS_CTS (USART_CR3_RTSE | USART_CR3_CTSE) /*!< CTS and RTS hard…
971 SET_BIT(LPUARTx->CR3, USART_CR3_CTSE); in LL_LPUART_EnableCTSHWFlowCtrl()
982 CLEAR_BIT(LPUARTx->CR3, USART_CR3_CTSE); in LL_LPUART_DisableCTSHWFlowCtrl()
999 MODIFY_REG(LPUARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE, HardwareFlowControl); in LL_LPUART_SetHWFlowCtrl()
1015 return (uint32_t)(READ_BIT(LPUARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE)); in LL_LPUART_GetHWFlowCtrl()
Dstm32l0xx_ll_usart.h424 #define LL_USART_HWCONTROL_CTS USART_CR3_CTSE /*!< CTS mode …
425 #define LL_USART_HWCONTROL_RTS_CTS (USART_CR3_RTSE | USART_CR3_CTSE) /*!< CTS and R…
1424 SET_BIT(USARTx->CR3, USART_CR3_CTSE); in LL_USART_EnableCTSHWFlowCtrl()
1437 CLEAR_BIT(USARTx->CR3, USART_CR3_CTSE); in LL_USART_DisableCTSHWFlowCtrl()
1456 MODIFY_REG(USARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE, HardwareFlowControl); in LL_USART_SetHWFlowCtrl()
1474 return (uint32_t)(READ_BIT(USARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE)); in LL_USART_GetHWFlowCtrl()
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_uart.h386 #define UART_HWCONTROL_CTS USART_CR3_CTSE /*!< Clear To Sen…
387 #define UART_HWCONTROL_RTS_CTS (USART_CR3_RTSE | USART_CR3_CTSE) /*!< Request and …
1116 SET_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
1117 (__HANDLE__)->Init.HwFlowCtl |= USART_CR3_CTSE; \
1134 CLEAR_BIT((__HANDLE__)->Instance->CR3, USART_CR3_CTSE); \
1135 (__HANDLE__)->Init.HwFlowCtl &= ~(USART_CR3_CTSE); \
Dstm32l4xx_ll_lpuart.h402 #define LL_LPUART_HWCONTROL_CTS USART_CR3_CTSE /*!< CTS mode enabled…
403 #define LL_LPUART_HWCONTROL_RTS_CTS (USART_CR3_RTSE | USART_CR3_CTSE) /*!< CTS and RTS hard…
1301 SET_BIT(LPUARTx->CR3, USART_CR3_CTSE); in LL_LPUART_EnableCTSHWFlowCtrl()
1312 CLEAR_BIT(LPUARTx->CR3, USART_CR3_CTSE); in LL_LPUART_DisableCTSHWFlowCtrl()
1329 MODIFY_REG(LPUARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE, HardwareFlowControl); in LL_LPUART_SetHWFlowCtrl()
1345 return (uint32_t)(READ_BIT(LPUARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE)); in LL_LPUART_GetHWFlowCtrl()
Dstm32l4xx_ll_usart.h526 #define LL_USART_HWCONTROL_CTS USART_CR3_CTSE /*!< CTS mode …
527 #define LL_USART_HWCONTROL_RTS_CTS (USART_CR3_RTSE | USART_CR3_CTSE) /*!< CTS and R…
1801 SET_BIT(USARTx->CR3, USART_CR3_CTSE); in LL_USART_EnableCTSHWFlowCtrl()
1814 CLEAR_BIT(USARTx->CR3, USART_CR3_CTSE); in LL_USART_DisableCTSHWFlowCtrl()
1833 MODIFY_REG(USARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE, HardwareFlowControl); in LL_USART_SetHWFlowCtrl()
1851 return (uint32_t)(READ_BIT(USARTx->CR3, USART_CR3_RTSE | USART_CR3_CTSE)); in LL_USART_GetHWFlowCtrl()
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Src/
Dstm32l1xx_hal_smartcard.c1295 CLEAR_BIT(hsc->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE)); in SMARTCARD_SetConfig()
Dstm32l1xx_hal_irda.c1546 CLEAR_BIT(hirda->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE)); in IRDA_SetConfig()
Dstm32l1xx_hal_uart.c1901 MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE), huart->Init.HwFlowCtl); in UART_SetConfig()
Dstm32l1xx_hal_usart.c1873 CLEAR_BIT(husart->Instance->CR3, (uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE)); in USART_SetConfig()
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_uart.c201 #define USART_CR3_FIELDS ((uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE | USART_CR3_ONEBIT| \
204 #define USART_CR3_FIELDS ((uint32_t)(USART_CR3_RTSE | USART_CR3_CTSE | USART_CR3_ONEBIT)) /*!< UA…
/loramac-node-3.7.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_hal_uart.c2160 MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE | USART_CR3_ONEBIT), tmpreg); in UART_SetConfig()
/loramac-node-3.7.0/src/boards/SKiM881AXL/cmsis/
Dstm32l081xx.h6056 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/B-L072Z-LRWAN1/cmsis/
Dstm32l072xx.h6959 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/NucleoL073/cmsis/
Dstm32l073xx.h7118 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/SKiM880B/cmsis/
Dstm32l151xba.h6257 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/SKiM980A/cmsis/
Dstm32l151xba.h6257 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/NAMote72/cmsis/
Dstm32l152xc.h7097 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/NucleoL152/cmsis/
Dstm32l152xe.h7399 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro
/loramac-node-3.7.0/src/boards/NucleoL476/cmsis/
Dstm32l476xx.h16027 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ macro