| /bsp/dm365/applications/ |
| A D | board.c | 123 UART0->thr = c; in davinci_uart_putc() 150 UART0->ier = 0; in rt_hw_console_init() 151 UART0->lcr = 0x83; //8N1 in rt_hw_console_init() 152 UART0->dll = 0; in rt_hw_console_init() 153 UART0->dlh = 0; in rt_hw_console_init() 154 UART0->lcr = 0x03; in rt_hw_console_init() 155 UART0->mcr = 0x03; //RTS,CTS in rt_hw_console_init() 156 UART0->fcr = 0x07; //FIFO in rt_hw_console_init() 157 UART0->lcr = 0x83; in rt_hw_console_init() 158 UART0->dll = divisor & 0xff; in rt_hw_console_init() [all …]
|
| /bsp/dm365/drivers/ |
| A D | davinci_serial.c | 79 if (uart == UART0) in davinci_uart_control() 86 if (uart == UART0) in davinci_uart_control() 137 UART0->ier = 0; in davinci_uart0_init() 138 UART0->lcr = 0x83; //8N1 in davinci_uart0_init() 139 UART0->dll = 0; in davinci_uart0_init() 140 UART0->dlh = 0; in davinci_uart0_init() 141 UART0->lcr = 0x03; in davinci_uart0_init() 143 UART0->fcr = 0x07; //FIFO in davinci_uart0_init() 144 UART0->lcr = 0x83; in davinci_uart0_init() 147 UART0->lcr = 0x03; in davinci_uart0_init() [all …]
|
| /bsp/yichip/yc3121-pos/Libraries/sdk/ |
| A D | yc_uart.c | 34 case UART0: in UART_AutoFlowCtrlCmd() 46 case UART0: in UART_AutoFlowCtrlCmd() 69 case UART0: in UART_DeInit() 84 if (UARTx == UART0) in UART_DMASendBuf() 103 case UART0: in UART_GetITIdentity() 171 if (UARTx == UART0) in UART_Init() 201 if (UART0 == UARTx) in UART_IsRXFIFOFull() 216 if (UART0 == UARTx) in UART_IsRXFIFONotEmpty() 230 if (UART0 == UARTx) in UART_IsUARTBusy() 247 case UART0: in UART_ITConfig() [all …]
|
| /bsp/tae32f5300/board/ |
| A D | board.c | 94 while (!__LL_UART_IsTxFIFONotFull(UART0)) {}; in rt_hw_console_output() 97 __LL_UART_TxBuf9bits_Write(UART0, (uint16_t)a); in rt_hw_console_output() 99 while (!__LL_UART_IsTxFIFONotFull(UART0)) {}; in rt_hw_console_output() 102 __LL_UART_TxBuf9bits_Write(UART0, (uint16_t)(*(str + i))); in rt_hw_console_output() 110 if (__LL_UART_IsDatReady(UART0)) in rt_hw_console_getchar() 113 ch = __LL_UART_RxBuf9bits_Read(UART0); in rt_hw_console_getchar()
|
| /bsp/yichip/yc3121-pos/Libraries/core/ |
| A D | system.c | 56 printfsend(UART0, (uint8_t *)format, ulIdx); in MyPrintf() 98 printfsend(UART0, (uint8_t *)&ulValue, 1); in MyPrintf() 129 printfsend(UART0, (uint8_t *)pcStr, ulIdx); in MyPrintf() 136 printfsend(UART0, (uint8_t *)" ", 1); in MyPrintf() 211 printfsend(UART0, (uint8_t *)pcBuf, ulPos); in MyPrintf() 217 printfsend(UART0, (uint8_t *)format - 1, 1); in MyPrintf() 223 printfsend(UART0, (uint8_t *)"ERROR", 5); in MyPrintf()
|
| /bsp/renesas/libraries/bsp-template/board/ |
| A D | Kconfig | 26 bool "Enable UART0" 30 bool "Enable UART0 RX DMA" 35 bool "Enable UART0 TX DMA" 40 int "Set UART0 RX buffer size" 46 int "Set UART0 TX buffer size"
|
| /bsp/renesas/ra6e2-fpb/board/ |
| A D | Kconfig | 27 bool "Enable UART0" 31 bool "Enable UART0 RX DMA" 36 bool "Enable UART0 TX DMA" 41 int "Set UART0 RX buffer size" 47 int "Set UART0 TX buffer size"
|
| /bsp/w60x/ |
| A D | README.md | 13 | UART | 支持 | UART0/UART1/UART2 | 60 …程序编译正确无误后,会在 `Bin` 文件夹中生成 `.img` 固件,使用带有 Xmodem 协议的串口工具对固件进行下载(默认 UART0-115200)。串口下载参考 `packages/w… 64 下载程序成功之后,系统会自动运行,会在`UART0`上看到 RT-Thread 的启动 logo 信息: 73 - 默认串口`UART0` 波特率`115200` 77 此 BSP 默认只开启了 GPIO 和 UART0 的功能,如果需使用其他外设,需要利用 ENV 工具对 BSP 进行配置,步骤如下:
|
| /bsp/nv32f100x/lib/src/ |
| A D | uart.c | 49 ASSERT((pUART == UART0) || (pUART == UART1) || (pUART == UART2)); in UART_Init() 52 if (pUART == UART0) in UART_Init() 100 ASSERT((pUART == UART0) || (pUART == UART1) || (pUART == UART2)); in UART_GetChar() 146 ASSERT((pUART == UART0) || (pUART == UART1) || (pUART == UART2)); in UART_SetBaudrate() 177 ASSERT((pUART == UART0) || (pUART == UART1) || (pUART == UART2)); in UART_EnableInterrupt() 231 ASSERT((pUART == UART0) || (pUART == UART1) || (pUART == UART2)); in UART_DisableInterrupt() 421 UART_Callback(UART0); in UART0_Isr()
|
| /bsp/samd21/sam_d2x_asflib/common/services/serial/sam_uart/ |
| A D | uart_serial.h | 121 # ifdef UART0 in usart_serial_init() 122 if (UART0 == (Uart*)p_usart) { in usart_serial_init() 394 # ifdef UART0 in usart_serial_putchar() 395 if (UART0 == (Uart*)p_usart) { in usart_serial_putchar() 498 # ifdef UART0 in usart_serial_getchar() 499 if (UART0 == (Uart*)p_usart) { in usart_serial_getchar() 594 # ifdef UART0 in usart_serial_is_rx_ready() 595 if (UART0 == (Uart*)p_usart) { in usart_serial_is_rx_ready()
|
| /bsp/m16c62p/drivers/ |
| A D | vectors_iar.asm | 37 DC32 0 ; Vector 7: Timer B3, UART0 Bus Collision Detect 47 DC32 0 ; Vector 17: UART0 Transmit, NACK0 48 DC32 rt_hw_uart0_receive_handler ; Vector 18: UART0 Receive, ACK0
|
| A D | vectors_gcc.S | 45 .long 0 ; Vector 7: Timer B3, UART0 Bus Collision Detect 55 .long 0 ; Vector 17: UART0 Transmit, NACK0 56 .long _rt_hw_uart0_receive_handler ; Vector 18: UART0 Receive, ACK0
|
| /bsp/hpmicro/hpm5301evklite/board/ |
| A D | Kconfig | 23 bool "Enable UART0 (Debugger)" 27 bool "Enable UART0 RX DMA" 31 bool "Enable UART0 TX DMA" 35 int "Set UART0 RX buffer size" 40 int "Set UART0 TX buffer size"
|
| /bsp/renesas/rzn2l_rsk/board/ |
| A D | Kconfig | 42 bool "Enable UART0" 46 bool "Enable UART0 RX DMA" 51 bool "Enable UART0 TX DMA" 56 int "Set UART0 RX buffer size" 62 int "Set UART0 TX buffer size"
|
| /bsp/nv32f100x/board/src/ |
| A D | drv_uart.c | 64 UART_EnableInterrupt(UART0, UART_RxBuffFullInt); in nv32_configure() 137 UART0, 148 if(UART0->S1 & UART_S1_RDRF_MASK) in UART0_IRQHandler()
|
| /bsp/gd32/arm/gd32e230-lckfb/board/ |
| A D | Kconfig | 41 bool "Enable UART0 for Console" 45 bool "Enable UART0 RX DMA" 51 bool "Enable UART0 TX DMA" 57 int "Set UART0 RX buffer size" 63 int "Set UART0 TX buffer size" 69 int "Set UART0 RX DMA ping-pong buffer size"
|
| /bsp/fm33lc026/libraries/FM33LC0xx_FL_Driver/Src/ |
| A D | fm33lc0xx_fl_uart.c | 42 #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == UART0)||\ 106 if(UARTx == UART0) in FL_UART_DeInit() 175 if(UARTx == UART0) in FL_UART_Init() 219 if(UARTx == UART0) in FL_UART_Init()
|
| /bsp/hpmicro/hpm5300evk/board/ |
| A D | Kconfig | 23 bool "Enable UART0 (Debugger)" 27 bool "Enable UART0 RX DMA" 31 bool "Enable UART0 TX DMA" 35 int "Set UART0 RX buffer size" 40 int "Set UART0 TX buffer size"
|
| /bsp/hpmicro/hpm6200evk/board/ |
| A D | Kconfig | 23 bool "Enable UART0 (Debugger)" 27 bool "Enable UART0 RX DMA" 31 bool "Enable UART0 TX DMA" 35 int "Set UART0 RX buffer size" 40 int "Set UART0 TX buffer size"
|
| /bsp/hpmicro/hpm6300evk/board/ |
| A D | Kconfig | 27 bool "Enable UART0 (Debugger)" 31 bool "Enable UART0 RX DMA" 35 bool "Enable UART0 TX DMA" 39 int "Set UART0 RX buffer size" 44 int "Set UART0 TX buffer size"
|
| /bsp/Vango/v85xx/ |
| A D | README.md | 34 串口连接:使用串口线连接到COM1(UART0),或者使用USB转TTL模块连接PA9(MCU TX)和PA10(MCU RX)。 51 | UART | 支持 | UART0~4 |
|
| /bsp/nxp/lpc/lpc54608-LPCXpresso/ |
| A D | README.md | 41 串口连接:板载CMSIS-DAP仿真器连接到LPC54608J512的UART0,在PC上打开CMSIS-DAP对应的UART即可。 59 | UART | 支持 | 只支持UART0 |
|
| /bsp/mini4020/drivers/ |
| A D | board.c | 24 #define UART0 ((struct uartport *)UART0_BASE) macro 29 UART0,
|
| /bsp/sep6200/drivers/ |
| A D | board.c | 25 #define UART0 ((struct uartport *)SEP6200_UART0_BASE) macro 31 UART0,
|
| /bsp/tae32f5300/drivers/ |
| A D | drv_uart.c | 32 LL_UART_Init(UART0, &uart_init); in uart_init() 34 __LL_UART_RxDatAvl_INT_En(UART0); in uart_init() 169 uart->uart = UART0; in rt_hw_uart_init()
|