2013-04-21 03:35 AM
I have a problem ... I want to connect to the terminal via RS 232 converter usb .. code seems to be reasonable but still something is wrong, I can not send anything to the terminal please help.
#include ''stm32f0xx.h''
#include ''stm32f0xx_rcc.h''
#include ''stm32f0xx_gpio.h''
#include ''stm32f0xx_usart.h''
int main(void)
{
USART_InitTypeDef USART_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);
//GPIO_PinRemapConfig(GPIO_Remap_USART2, ENABLE);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource2, GPIO_AF_1);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource3, GPIO_AF_1);
//Configure USART2 pins: Tx and Rx ----------------------------
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART2, &USART_InitStructure);
USART_Cmd(USART2,ENABLE);
while(1)
{
while (USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET); // Wait for Empty
USART_SendData(USART2, 0x49); // Send 'I'
}
return 0;
}
#uart #usart #rs232
2013-04-21 04:30 AM
The STM32 does not output RS232 compatible voltages, you would need a level converter, or USB-to-CMOS Serial adapter.
If you have a scope, check if you have a signal at the TX pin.2013-04-21 09:31 PM
Hi Wil,
What I usually do as a immediate solution is i check the pin of the TX if it can power on an LED if yes means my serial is configured properly, if not I try to check my code again. And as clive1 have said.. you have to use a level converter to connect it to pc serial here are the links for you: using using :)2013-04-21 09:37 PM
2013-04-21 11:15 PM
''as clive1 have said.. you have to use a level converter to connect it to pc serial''
True - see
http://e2e.ti.com/support/microcontrollers/msp430/f/166/p/70791/804aspx804368
But, instead of connecting to the PC's serial port (even assuming it has one), I would suggest using something like this instead: Take care to select the correct version - both 3V and 5V options are available. This gives a logic-level connection direct to the UART - no messing about with RS232 transceivers. To PC applications, it appears as a standard COM port. Or this: Which is exactly the same, but with only Rx, Tx, and Ground connections. (They call it ''Raspberry Pi'', but that's immaterial - it's just a 3V UART connection)2013-04-22 04:38 AM
thanks for help. problem solved! ;)