Home
last modified time | relevance | path

Searched refs:USART_ClockInitStruct (Results 1 – 25 of 28) sorted by relevance

12

/bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Src/
A Dstm32l1xx_ll_usart.c329 …rStatus LL_USART_ClockInit(USART_TypeDef *USARTx, LL_USART_ClockInitTypeDef *USART_ClockInitStruct) in LL_USART_ClockInit() argument
335 assert_param(IS_LL_USART_CLOCKOUTPUT(USART_ClockInitStruct->ClockOutput)); in LL_USART_ClockInit()
343 if (USART_ClockInitStruct->ClockOutput == LL_USART_CLOCK_DISABLE) in LL_USART_ClockInit()
356 assert_param(IS_LL_USART_CLOCKPOLARITY(USART_ClockInitStruct->ClockPolarity)); in LL_USART_ClockInit()
357 assert_param(IS_LL_USART_CLOCKPHASE(USART_ClockInitStruct->ClockPhase)); in LL_USART_ClockInit()
358 assert_param(IS_LL_USART_LASTBITCLKOUTPUT(USART_ClockInitStruct->LastBitClockPulse)); in LL_USART_ClockInit()
369 USART_CR2_CLKEN | USART_ClockInitStruct->ClockPolarity | in LL_USART_ClockInit()
370 USART_ClockInitStruct->ClockPhase | USART_ClockInitStruct->LastBitClockPulse); in LL_USART_ClockInit()
388 void LL_USART_ClockStructInit(LL_USART_ClockInitTypeDef *USART_ClockInitStruct) in LL_USART_ClockStructInit() argument
391 USART_ClockInitStruct->ClockOutput = LL_USART_CLOCK_DISABLE; in LL_USART_ClockStructInit()
[all …]
/bsp/n32/libraries/N32L43x_Firmware_Library/n32l43x_std_periph_driver/src/
A Dn32l43x_usart.c287 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
288 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
289 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
290 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
301 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
302 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
312 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
315 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
316 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
317 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/n32/libraries/N32L40x_Firmware_Library/n32l40x_std_periph_driver/src/
A Dn32l40x_usart.c287 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
288 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
289 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
290 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
301 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
302 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
312 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
315 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
316 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
317 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/n32/libraries/N32G43x_Firmware_Library/n32g43x_std_periph_driver/src/
A Dn32g43x_usart.c287 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
288 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
289 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
290 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
301 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
302 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
312 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
315 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
316 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
317 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/airm2m/air32f103/libraries/AIR32F10xLib/src/
A Dair32f10x_usart.c287 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->USART_Clock)); in USART_ClockInit()
288 assert_param(IS_USART_CPOL(USART_ClockInitStruct->USART_CPOL)); in USART_ClockInit()
289 assert_param(IS_USART_CPHA(USART_ClockInitStruct->USART_CPHA)); in USART_ClockInit()
290 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->USART_LastBit)); in USART_ClockInit()
301 tmpreg |= (uint32_t)USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | in USART_ClockInit()
302 USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit; in USART_ClockInit()
313 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct) in USART_ClockStructInit() argument
316 USART_ClockInitStruct->USART_Clock = USART_Clock_Disable; in USART_ClockStructInit()
317 USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low; in USART_ClockStructInit()
318 USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge; in USART_ClockStructInit()
[all …]
/bsp/n32/libraries/N32G4FR_Firmware_Library/n32g4fr_std_periph_driver/src/
A Dn32g4fr_usart.c305 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
306 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
307 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
308 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
319 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
320 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
330 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
333 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
334 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
335 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/n32/libraries/N32G45x_Firmware_Library/n32g45x_std_periph_driver/src/
A Dn32g45x_usart.c305 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
306 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
307 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
308 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
319 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
320 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
330 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
333 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
334 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
335 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/n32/libraries/N32WB452_Firmware_Library/n32wb452_std_periph_driver/src/
A Dn32wb452_usart.c305 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
306 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
307 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
308 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
319 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
320 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
330 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
333 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
334 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
335 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/n32g452xx/Libraries/N32_Std_Driver/n32g45x_std_periph_driver/src/
A Dn32g45x_usart.c300 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->Clock)); in USART_ClockInit()
301 assert_param(IS_USART_CPOL(USART_ClockInitStruct->Polarity)); in USART_ClockInit()
302 assert_param(IS_USART_CPHA(USART_ClockInitStruct->Phase)); in USART_ClockInit()
303 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->LastBit)); in USART_ClockInit()
314 tmpregister |= (uint32_t)USART_ClockInitStruct->Clock | USART_ClockInitStruct->Polarity in USART_ClockInit()
315 | USART_ClockInitStruct->Phase | USART_ClockInitStruct->LastBit; in USART_ClockInit()
325 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct) in USART_ClockStructInit() argument
328 USART_ClockInitStruct->Clock = USART_CLK_DISABLE; in USART_ClockStructInit()
329 USART_ClockInitStruct->Polarity = USART_CLKPOL_LOW; in USART_ClockStructInit()
330 USART_ClockInitStruct->Phase = USART_CLKPHA_1EDGE; in USART_ClockStructInit()
[all …]
/bsp/wch/arm/Libraries/CH32F10x_StdPeriph_Driver/StdPeriph_Driver/src/
A Dch32f10x_usart.c196 void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct) in USART_ClockInit() argument
202 tmpreg |= (uint32_t)USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | in USART_ClockInit()
203 USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit; in USART_ClockInit()
214 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct) in USART_ClockStructInit() argument
216 USART_ClockInitStruct->USART_Clock = USART_Clock_Disable; in USART_ClockStructInit()
217 USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low; in USART_ClockStructInit()
218 USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge; in USART_ClockStructInit()
219 USART_ClockInitStruct->USART_LastBit = USART_LastBit_Disable; in USART_ClockStructInit()
/bsp/wch/arm/Libraries/CH32F20x_StdPeriph_Driver/StdPeriph_Driver/src/
A Dch32f20x_usart.c195 void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct) in USART_ClockInit() argument
201 tmpreg |= (uint32_t)USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | in USART_ClockInit()
202 USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit; in USART_ClockInit()
213 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct) in USART_ClockStructInit() argument
215 USART_ClockInitStruct->USART_Clock = USART_Clock_Disable; in USART_ClockStructInit()
216 USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low; in USART_ClockStructInit()
217 USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge; in USART_ClockStructInit()
218 USART_ClockInitStruct->USART_LastBit = USART_LastBit_Disable; in USART_ClockStructInit()
/bsp/wch/risc-v/Libraries/CH32V10x_StdPeriph_Driver/StdPeriph_Driver/src/
A Dch32v10x_usart.c210 void USART_ClockInit(USART_TypeDef *USARTx, USART_ClockInitTypeDef *USART_ClockInitStruct) in USART_ClockInit() argument
216 tmpreg |= (uint32_t)USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | in USART_ClockInit()
217 USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit; in USART_ClockInit()
231 void USART_ClockStructInit(USART_ClockInitTypeDef *USART_ClockInitStruct) in USART_ClockStructInit() argument
233 USART_ClockInitStruct->USART_Clock = USART_Clock_Disable; in USART_ClockStructInit()
234 USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low; in USART_ClockStructInit()
235 USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge; in USART_ClockStructInit()
236 USART_ClockInitStruct->USART_LastBit = USART_LastBit_Disable; in USART_ClockStructInit()
/bsp/ft32/libraries/FT32F0xx/FT32F0xx_Driver/Src/
A Dft32f0xx_usart.c209 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->USART_Clock)); in USART_ClockInit()
210 assert_param(IS_USART_CPOL(USART_ClockInitStruct->USART_CPOL)); in USART_ClockInit()
211 assert_param(IS_USART_CPHA(USART_ClockInitStruct->USART_CPHA)); in USART_ClockInit()
212 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->USART_LastBit)); in USART_ClockInit()
222 tmpreg |= (uint32_t)(USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | in USART_ClockInit()
223 USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit); in USART_ClockInit()
234 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct) in USART_ClockStructInit() argument
237 USART_ClockInitStruct->USART_Clock = USART_Clock_Disable; in USART_ClockStructInit()
238 USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low; in USART_ClockStructInit()
239 USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge; in USART_ClockStructInit()
[all …]
/bsp/hk32/libraries/HK32F0xx_StdPeriph_Driver/src/
A Dhk32f0xx_usart.c307 assert_param(IS_USART_CLOCK(USART_ClockInitStruct->USART_Clock)); in USART_ClockInit()
308 assert_param(IS_USART_CPOL(USART_ClockInitStruct->USART_CPOL)); in USART_ClockInit()
309 assert_param(IS_USART_CPHA(USART_ClockInitStruct->USART_CPHA)); in USART_ClockInit()
310 assert_param(IS_USART_LASTBIT(USART_ClockInitStruct->USART_LastBit)); in USART_ClockInit()
320 tmpreg |= (uint32_t)(USART_ClockInitStruct->USART_Clock | USART_ClockInitStruct->USART_CPOL | in USART_ClockInit()
321 USART_ClockInitStruct->USART_CPHA | USART_ClockInitStruct->USART_LastBit); in USART_ClockInit()
332 void USART_ClockStructInit(USART_ClockInitTypeDef *USART_ClockInitStruct) in USART_ClockStructInit() argument
335 USART_ClockInitStruct->USART_Clock = USART_Clock_Disable; in USART_ClockStructInit()
336 USART_ClockInitStruct->USART_CPOL = USART_CPOL_Low; in USART_ClockStructInit()
337 USART_ClockInitStruct->USART_CPHA = USART_CPHA_1Edge; in USART_ClockStructInit()
[all …]
/bsp/wch/arm/Libraries/CH32F10x_StdPeriph_Driver/StdPeriph_Driver/inc/
A Dch32f10x_usart.h152 void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct);
153 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct);
/bsp/wch/arm/Libraries/CH32F20x_StdPeriph_Driver/StdPeriph_Driver/inc/
A Dch32f20x_usart.h155 void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct);
156 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct);
/bsp/wch/risc-v/Libraries/CH32V10x_StdPeriph_Driver/StdPeriph_Driver/inc/
A Dch32v10x_usart.h154 void USART_ClockInit(USART_TypeDef *USARTx, USART_ClockInitTypeDef *USART_ClockInitStruct);
155 void USART_ClockStructInit(USART_ClockInitTypeDef *USART_ClockInitStruct);
/bsp/airm2m/air32f103/libraries/AIR32F10xLib/inc/
A Dair32f10x_usart.h346 void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct);
347 void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct);
/bsp/n32/libraries/N32L43x_Firmware_Library/n32l43x_std_periph_driver/inc/
A Dn32l43x_usart.h357 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
358 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);
/bsp/n32/libraries/N32WB452_Firmware_Library/n32wb452_std_periph_driver/inc/
A Dn32wb452_usart.h358 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
359 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);
/bsp/n32/libraries/N32L40x_Firmware_Library/n32l40x_std_periph_driver/inc/
A Dn32l40x_usart.h357 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
358 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);
/bsp/n32/libraries/N32G4FR_Firmware_Library/n32g4fr_std_periph_driver/inc/
A Dn32g4fr_usart.h358 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
359 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);
/bsp/n32/libraries/N32G43x_Firmware_Library/n32g43x_std_periph_driver/inc/
A Dn32g43x_usart.h357 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
358 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);
/bsp/n32/libraries/N32G45x_Firmware_Library/n32g45x_std_periph_driver/inc/
A Dn32g45x_usart.h358 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
359 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);
/bsp/n32g452xx/Libraries/N32_Std_Driver/n32g45x_std_periph_driver/inc/
A Dn32g45x_usart.h358 void USART_ClockInit(USART_Module* USARTx, USART_ClockInitType* USART_ClockInitStruct);
359 void USART_ClockStructInit(USART_ClockInitType* USART_ClockInitStruct);

Completed in 823 milliseconds

12