Setting up a UART caused device reset
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-30 8:00 PM
void uar2_rx_tx_init(void)
{
USART2->CR1 = (USART_CR1_TE | USART_CR1_UE | USART_CR1_RE | USART_CR1_RXNEIE | USART_CR1_TCIE | USART_CR1_TXEIE);
RCC->AHBENR |= RCC_AHBENR_GPIOAEN;
RCC-> APB1ENR |= UART2EN;
GPIOA->MODER ^= ~(1U<<6);
GPIOA->MODER |= (1U<<7);
GPIOA->AFR[0] |= (1U<<12);
GPIOA->AFR[0] &= ~(1U<<13);
GPIOA->AFR[0] &= ~(1U<<14);
GPIOA->AFR[0] &= ~(1U<<15);
//USART2->CR3 |= RCC_CFGR3_USART2SW_SYSCLK;
uart_set_baudrate(USART2, APB_FREQ, UART_BAUDRATE);
}
uint16_t uart2_read(void) {
while(!(USART2->ISR & USART_CR1_RXNEIE))
{
}
return USART2->RDR;
}
static void uart_set_baudrate( USART_TypeDef *USARTx, uint32_t PeriphClk, uint32_t BaduRate)
{
USARTx->BRR = compute_set_baudrate(PeriphClk, BaduRate);
//USARTx->BRR = 0x45;
}
static uint32_t compute_set_baudrate(uint32_t PeriphClk, uint32_t BaudRate)
{
return ((PeriphClk + (BaudRate/2U)) / BaudRate) ;
}​
Solved! Go to Solution.
- Labels:
-
STM32F0 Series
-
UART-USART
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-31 8:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-31 5:06 PM
> such a code implementation seems to cause my Stm32F030 to go into Reset_Handler state.
At which line?
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-31 5:55 PM - edited ‎2024-03-31 6:06 PM
I tried to attach my debugger and I can tell this code is causing reset:
GPIOA->MODER ^= ~(1U<<6);
To be exact, it's command at 0x08000368
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-31 7:50 PM
You'd want to enable the USART2 clock, before writing register.
Check external connectivity to see if that triggers a short or reset.
Doing multiple RMW is also not very efficient. Fold so there's a single load/store instead of multiple.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-31 8:05 PM
^ means XOR. You probably want &, i.e. AND.
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-31 9:46 PM
It works! Thanks for your help!
