2012-08-02 04:07 AM
Hi , i've a problem, i don't manage the sending of the UART signal in correct manner using stm32f4 discovery.
I've need of the correct procedure to send Uart signal. Every help is accepted. Thank you. #stm32-discovery #uart2012-08-02 06:05 AM
This seems to be a repeating theme
https://my.st.com/public/STe2ecommunities/mcu/Lists/STM32Discovery/Flat.aspx?RootFolder=https://my.st.com/public/STe2ecommunities/mcu/Lists/STM32Discovery/uart communication stm32f4&FolderCTID=0x01200200770978C69A1141439FE559EB459D75800084C20D8867EAD444A5987D47BE638E0F¤tviews=746
2012-08-02 07:26 AM
2012-08-02 09:00 AM
/**
* @brief Transmits break characters.
* @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or
* UART peripheral.
* @retval None
*/
void USART_SendBreak(USART_TypeDef* USARTx)
{
/* Check the parameters */
assert_param(IS_USART_ALL_PERIPH(USARTx));
/* Send break characters */
USARTx->CR1 |= USART_CR1_SBK;
}
2012-08-03 01:12 AM