Home
last modified time | relevance | path

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

/bsp/wch/risc-v/ch32v103r-evt/board/
A Ddebug.c164 while(USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET); in _write()
167 while(USART_GetFlagStatus(USART2, USART_FLAG_TC) == RESET); in _write()
170 while(USART_GetFlagStatus(USART3, USART_FLAG_TC) == RESET); in _write()
/bsp/ft32/libraries/Drivers/
A Ddrv_usart.c279 UART_INSTANCE_CLEAR_FUNCTION(uart->config->Instance, USART_FLAG_TC); in ft32_putc()
285 while (USART_GetFlagStatus(uart->config->Instance, USART_FLAG_TC) == RESET); in ft32_putc()
360 else if (USART_GetFlagStatus(uart->config->Instance, USART_FLAG_TC) != RESET) in uart_isr()
366 UART_INSTANCE_CLEAR_FUNCTION(uart->config->Instance, USART_FLAG_TC); in uart_isr()
401 if (USART_GetFlagStatus(uart->config->Instance, USART_FLAG_TC) != RESET) in uart_isr()
403 UART_INSTANCE_CLEAR_FUNCTION(uart->config->Instance, USART_FLAG_TC); in uart_isr()
/bsp/essemi/es32f0654/libraries/ES32F065x_ALD_StdPeriph_Driver/Include/
A Dald_usart.h260 USART_FLAG_TC = (1U << 6), /**< Tx complete */ enumerator
436 ((x) == USART_FLAG_TC) || ((x) == USART_FLAG_RXNE) || \
441 ((x) == USART_FLAG_TC) || \
/bsp/hk32/libraries/rt_drivers/
A Ddrv_usart.c219 if (USART_GetFlagStatus(usart_instance->usartx, USART_FLAG_TC) != RESET) in usart_isr()
221 USART_ClearFlag(usart_instance->usartx, USART_FLAG_TC); in usart_isr()
/bsp/wch/arm/Libraries/ch32_drivers/
A Ddrv_uart_ch32f10x.c226 if (USART_GetFlagStatus(usart_dev->periph, USART_FLAG_TC) != RESET) in usart_isr()
228 USART_ClearFlag(usart_dev->periph, USART_FLAG_TC); in usart_isr()
A Ddrv_uart_ch32f20x.c266 if (USART_GetFlagStatus(usart_dev->periph, USART_FLAG_TC) != RESET) in usart_isr()
268 USART_ClearFlag(usart_dev->periph, USART_FLAG_TC); in usart_isr()
/bsp/nuclei/libraries/gd32vf103/HAL_Drivers/
A Ddrv_usart.c204 if (usart_flag_get(usart->usart_base, USART_FLAG_TC) != RESET) { in usart_isr()
205 usart_flag_clear(usart->usart_base, USART_FLAG_TC); in usart_isr()
/bsp/ft32/libraries/FT32F0xx/FT32F0xx_Driver/Inc/
A Dft32f0xx_usart.h371 #define USART_FLAG_TC USART_ISR_TC macro
379 ((FLAG) == USART_FLAG_TC) || ((FLAG) == USART_FLAG_RXNE) || \
390 #define IS_USART_CLEAR_FLAG(FLAG) (((FLAG) == USART_FLAG_WU) || ((FLAG) == USART_FLAG_TC) || \
/bsp/gd32/risc-v/libraries/gd32_drivers/
A Ddrv_usart.c402 if (usart_flag_get(uart->uart_periph, USART_FLAG_TC) != RESET) in GD32_UART_IRQHandler()
404 usart_flag_clear(uart->uart_periph, USART_FLAG_TC); in GD32_UART_IRQHandler()
/bsp/hk32/libraries/HK32F0xx_StdPeriph_Driver/inc/
A Dhk32f0xx_usart.h395 #define USART_FLAG_TC USART_ISR_TC macro
403 ((FLAG) == USART_FLAG_TC) || ((FLAG) == USART_FLAG_RXNE) || \
414 #define IS_USART_CLEAR_FLAG(FLAG) (((FLAG) == USART_FLAG_WU) || ((FLAG) == USART_FLAG_TC) || \
/bsp/airm2m/air32f103/libraries/AIR32F10xLib/inc/
A Dair32f10x_usart.h302 #define USART_FLAG_TC ((uint16_t)0x0040) macro
310 ((FLAG) == USART_FLAG_TC) || ((FLAG) == USART_FLAG_RXNE) || \
/bsp/airm2m/air32f103/libraries/rt_drivers/
A Ddrv_usart.c316 if (USART_GetFlagStatus(uart->config->Instance, USART_FLAG_TC) != RESET) in uart_isr()
318 USART_ClearFlag(uart->config->Instance, USART_FLAG_TC); in uart_isr()
/bsp/wch/arm/Libraries/CH32F10x_StdPeriph_Driver/StdPeriph_Driver/inc/
A Dch32f10x_usart.h140 #define USART_FLAG_TC ((uint16_t)0x0040) macro
/bsp/wch/arm/Libraries/CH32F20x_StdPeriph_Driver/StdPeriph_Driver/inc/
A Dch32f20x_usart.h143 #define USART_FLAG_TC ((uint16_t)0x0040) macro
/bsp/wch/risc-v/Libraries/CH32V10x_StdPeriph_Driver/StdPeriph_Driver/inc/
A Dch32v10x_usart.h143 #define USART_FLAG_TC ((uint16_t)0x0040) macro
/bsp/essemi/es32f0654/libraries/ES32F065x_ALD_StdPeriph_Driver/Source/
A Dald_smartcard.c361 if (smartcard_wait_flag(hperh, USART_FLAG_TC, SET, timeout) != OK) { in ald_smartcard_send()
517 ald_usart_clear_flag_status((usart_handle_t *)hperh, USART_FLAG_TC); in ald_smartcard_send_by_dma()
621 flag = ald_usart_get_flag_status((usart_handle_t *)hperh, USART_FLAG_TC); in ald_smartcard_irq_handler()
A Dald_usart.c532 if (usart_wait_flag(hperh, USART_FLAG_TC, SET, timeout) != OK) { in ald_usart_send()
749 ald_usart_clear_flag_status(hperh, USART_FLAG_TC); in ald_usart_send_by_dma()
917 if (usart_wait_flag(hperh, USART_FLAG_TC, SET, timeout) != OK) { in ald_usart_send_sync()
1245 ald_usart_clear_flag_status(hperh, USART_FLAG_TC); in ald_usart_send_by_dma_sync()
1423 ald_usart_clear_flag_status(hperh, USART_FLAG_TC); in ald_usart_send_recv_by_dma_sync()
1592 flag = ald_usart_get_flag_status(hperh, USART_FLAG_TC); in ald_usart_irq_handler()
/bsp/wch/risc-v/Libraries/ch32_drivers/
A Ddrv_usart_v2.c410 USART_ClearFlag(uart->handle.Instance, USART_FLAG_TC); in ch32_control()
439 USART_ClearFlag(uart->handle.Instance, USART_FLAG_TC); in ch32_control()
473 while (USART_GetFlagStatus(uart->config->Instance, USART_FLAG_TC) == RESET); in ch32_putc()
546 …andle.Instance, USART_IT_TC) != RESET && USART_GetFlagStatus(uart->handle.Instance, USART_FLAG_TC)) in uart_isr()
A Ddrv_usart.c327 while (USART_GetFlagStatus(uart->config->Instance, USART_FLAG_TC) == RESET); in ch32_putc()
/bsp/gd32/risc-v/libraries/GD32VF103_Firmware_Library/GD32VF103_standard_peripheral/Include/
A Dgd32vf103_usart.h145USART_FLAG_TC = USART_REGIDX_BIT(USART_STAT_REG_OFFSET, 6U), /*!< transmission complete */ enumerator
/bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Inc/
A Dstm32l1xx_hal_usart.h285 #define USART_FLAG_TC ((uint32_t)USART_SR_TC) macro
/bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Src/
A Dstm32l1xx_hal_usart.c801 if (USART_WaitOnFlagUntilTimeout(husart, USART_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) in HAL_USART_Transmit()
1267 __HAL_USART_CLEAR_FLAG(husart, USART_FLAG_TC); in HAL_USART_Transmit_DMA()
1443 __HAL_USART_CLEAR_FLAG(husart, USART_FLAG_TC); in HAL_USART_TransmitReceive_DMA()

Completed in 43 milliseconds