| /bsp/tkm32F499/Libraries/Hal_lib/src/ |
| A D | HAL_uart.c | 126 assert_param(IS_UART_BAUDRATE(UART_InitStruct->UART_BaudRate)); in UART_Init() 129 assert_param(IS_UART_PARITY(UART_InitStruct->UART_Parity)); in UART_Init() 130 assert_param(IS_UART_MODE(UART_InitStruct->UART_Mode)); in UART_Init() 141 …tmpreg |= (uint32_t)UART_InitStruct->UART_WordLength |(uint32_t)UART_InitStruct->UART_StopBits |UA… in UART_Init() 153 tmpreg |= UART_InitStruct->UART_HardwareFlowControl | UART_InitStruct->UART_Mode ; in UART_Init() 172 void UART_StructInit(UART_InitTypeDef* UART_InitStruct) in UART_StructInit() argument 175 UART_InitStruct->UART_BaudRate = 9600; in UART_StructInit() 176 UART_InitStruct->UART_WordLength = UART_WordLength_8b; in UART_StructInit() 177 UART_InitStruct->UART_StopBits = UART_StopBits_1; in UART_StructInit() 178 UART_InitStruct->UART_Parity = UART_Parity_No ; in UART_StructInit() [all …]
|
| /bsp/mm32l07x/Libraries/MM32L0xx/HAL_lib/src/ |
| A D | HAL_uart.c | 137 assert_param(IS_UART_MODE(UART_InitStruct->UART_Mode)); in UART_Init() 150 …tmpreg |= (uint32_t)UART_InitStruct->UART_WordLength |(uint32_t)UART_InitStruct->UART_StopBits |UA… in UART_Init() 162 tmpreg |= UART_InitStruct->UART_HardwareFlowControl | UART_InitStruct->UART_Mode ; in UART_Init() 177 tmpreg = (apbclock /UART_InitStruct->UART_BaudRate)/16; in UART_Init() 178 tmpreg1 = (apbclock /UART_InitStruct->UART_BaudRate)%16; in UART_Init() 189 void UART_StructInit(UART_InitTypeDef* UART_InitStruct) in UART_StructInit() argument 192 UART_InitStruct->UART_BaudRate = 9600; in UART_StructInit() 193 UART_InitStruct->UART_WordLength = UART_WordLength_8b; in UART_StructInit() 194 UART_InitStruct->UART_StopBits = UART_StopBits_1; in UART_StructInit() 195 UART_InitStruct->UART_Parity = UART_Parity_No ; in UART_StructInit() [all …]
|
| /bsp/mm32l3xx/Libraries/MM32L3xx/HAL_lib/src/ |
| A D | HAL_uart.c | 141 assert_param(IS_UART_MODE(UART_InitStruct->UART_Mode)); in UART_Init() 154 …tmpreg |= (uint32_t)UART_InitStruct->UART_WordLength |(uint32_t)UART_InitStruct->UART_StopBits |UA… in UART_Init() 166 tmpreg |= UART_InitStruct->UART_HardwareFlowControl | UART_InitStruct->UART_Mode ; in UART_Init() 185 tmpreg = (apbclock /UART_InitStruct->UART_BaudRate)/16; in UART_Init() 186 tmpreg1 = (apbclock /UART_InitStruct->UART_BaudRate)%16; in UART_Init() 197 void UART_StructInit(UART_InitTypeDef* UART_InitStruct) in UART_StructInit() argument 200 UART_InitStruct->UART_BaudRate = 9600; in UART_StructInit() 201 UART_InitStruct->UART_WordLength = UART_WordLength_8b; in UART_StructInit() 202 UART_InitStruct->UART_StopBits = UART_StopBits_1; in UART_StructInit() 203 UART_InitStruct->UART_Parity = UART_Parity_No ; in UART_StructInit() [all …]
|
| /bsp/mm32f103x/Libraries/MM32F103/HAL_lib/src/ |
| A D | HAL_uart.c | 140 assert_param(IS_UART_PARITY(UART_InitStruct->UART_Parity)); in UART_Init() 141 assert_param(IS_UART_MODE(UART_InitStruct->UART_Mode)); in UART_Init() 154 …tmpreg |= (uint32_t)UART_InitStruct->UART_WordLength | (uint32_t)UART_InitStruct->UART_StopBits | … in UART_Init() 166 tmpreg |= UART_InitStruct->UART_HardwareFlowControl | UART_InitStruct->UART_Mode ; in UART_Init() 185 tmpreg = (apbclock / UART_InitStruct->UART_BaudRate) / 16; in UART_Init() 197 void UART_StructInit(UART_InitTypeDef* UART_InitStruct) in UART_StructInit() argument 200 UART_InitStruct->UART_BaudRate = 9600; in UART_StructInit() 201 UART_InitStruct->UART_WordLength = UART_WordLength_8b; in UART_StructInit() 202 UART_InitStruct->UART_StopBits = UART_StopBits_1; in UART_StructInit() 203 UART_InitStruct->UART_Parity = UART_Parity_No ; in UART_StructInit() [all …]
|
| /bsp/yichip/yc3122-pos/Libraries/sdk/ |
| A D | yc_uart.c | 81 _ASSERT(IS_UART_RX_MODE(UART_InitStruct->RxMode)); in UART_Init() 82 _ASSERT(IS_UART_PARITY(UART_InitStruct->Parity)); in UART_Init() 119 void UART_StructInit(UART_InitTypeDef *UART_InitStruct) in UART_StructInit() argument 121 UART_InitStruct->BaudRate = 9600; in UART_StructInit() 122 UART_InitStruct->RxMode = MODE_RX_ENABLE; in UART_StructInit() 123 UART_InitStruct->Parity = YC_PARITY_NONE; in UART_StructInit() 124 UART_InitStruct->DataBits = DATABITS_8B; in UART_StructInit() 125 UART_InitStruct->StopBits = STOPBITS_1; in UART_StructInit() 126 UART_InitStruct->FlowCtrl = FLOWCTRL_NONE; in UART_StructInit() 127 UART_InitStruct->SmartCard = SMARTCARD_DISABLE; in UART_StructInit() [all …]
|
| A D | yc_uart.h | 135 void UART_Init(UART_TypeDef *UARTx, UART_InitTypeDef *UART_InitStruct); 136 void UART_StructInit(UART_InitTypeDef *UART_InitStruct);
|
| /bsp/yichip/yc3121-pos/Libraries/sdk/ |
| A D | yc_uart.c | 154 _ASSERT(IS_MODE(UART_InitStruct->Mode)); in UART_Init() 163 UART_InitStruct->Parity | in UART_Init() 164 UART_InitStruct->DataBits | in UART_Init() 165 UART_InitStruct->StopBits | in UART_Init() 166 UART_InitStruct->FlowCtrl | in UART_Init() 167 UART_InitStruct->Mode | in UART_Init() 409 UART_InitStruct->BaudRate = 9600; in UART_StructInit() 410 UART_InitStruct->DataBits = Databits_8b; in UART_StructInit() 412 UART_InitStruct->Mode = Mode_duplex; in UART_StructInit() 413 UART_InitStruct->StopBits = StopBits_1; in UART_StructInit() [all …]
|
| A D | yc_uart.h | 193 void UART_Init(UART_TypeDef UARTx, UART_InitTypeDef *UART_InitStruct); 295 void UART_StructInit(UART_InitTypeDef *UART_InitStruct);
|
| /bsp/yichip/yc3122-pos/Libraries/core/ |
| A D | system.c | 289 UART_InitTypeDef UART_InitStruct; in PrintPort_Init() local 290 …UART_InitStruct.BaudRate = PRINT_BAUD; //Configure serial port baud rate, the baud rate default… in PrintPort_Init() 291 UART_InitStruct.DataBits = DATABITS_8B; in PrintPort_Init() 292 UART_InitStruct.StopBits = STOPBITS_1; in PrintPort_Init() 293 UART_InitStruct.Parity = YC_PARITY_NONE; in PrintPort_Init() 294 UART_InitStruct.FlowCtrl = FLOWCTRL_NONE; in PrintPort_Init() 295 UART_InitStruct.RxMode = MODE_RX_ENABLE; in PrintPort_Init() 296 UART_InitStruct.SmartCard = SMARTCARD_DISABLE; in PrintPort_Init() 297 UART_InitStruct.CommMode = MODE_DUPLEX; in PrintPort_Init() 320 UART_Init(PrintPort_Struct.PrintUart, &UART_InitStruct); in PrintPort_Init()
|
| /bsp/mm32l3xx/Libraries/MM32L3xx/HAL_lib/inc/ |
| A D | HAL_uart.h | 222 void UART_Init(UART_TypeDef* UARTx, UART_InitTypeDef* UART_InitStruct); 223 void UART_StructInit(UART_InitTypeDef* UART_InitStruct);
|
| /bsp/tkm32F499/Libraries/Hal_lib/inc/ |
| A D | HAL_uart.h | 222 void UART_Init(UART_TypeDef* UARTx, UART_InitTypeDef* UART_InitStruct); 223 void UART_StructInit(UART_InitTypeDef* UART_InitStruct);
|
| /bsp/mm32l07x/Libraries/MM32L0xx/HAL_lib/inc/ |
| A D | HAL_uart.h | 222 void UART_Init(UART_TypeDef* UARTx, UART_InitTypeDef* UART_InitStruct); 223 void UART_StructInit(UART_InitTypeDef* UART_InitStruct);
|
| /bsp/mm32f103x/Libraries/MM32F103/HAL_lib/inc/ |
| A D | HAL_uart.h | 222 void UART_Init(UART_TypeDef* UARTx, UART_InitTypeDef* UART_InitStruct); 223 void UART_StructInit(UART_InitTypeDef* UART_InitStruct);
|
| /bsp/nxp/lpc/lpc178x/drivers/ |
| A D | lpc177x_8x_uart.c | 406 void UART_ConfigStructInit(UART_CFG_Type *UART_InitStruct) in UART_ConfigStructInit() argument 408 UART_InitStruct->Baud_rate = 9600; in UART_ConfigStructInit() 410 UART_InitStruct->Databits = UART_DATABIT_8; in UART_ConfigStructInit() 412 UART_InitStruct->Parity = UART_PARITY_NONE; in UART_ConfigStructInit() 414 UART_InitStruct->Stopbits = UART_STOPBIT_1; in UART_ConfigStructInit()
|
| A D | lpc177x_8x_uart.h | 633 void UART_ConfigStructInit(UART_CFG_Type *UART_InitStruct);
|
| /bsp/airm2m/air105/libraries/HAL_Driver/Inc/ |
| A D | air105_uart.h | 256 void UART_Init(UART_TypeDef* UARTx, UART_InitTypeDef* UART_InitStruct); 257 void UART_StructInit(UART_InitTypeDef* UART_InitStruct);
|