User Activity

I am trying to run a simple program that can read in data from a potentiometer through ADC. The pot is connected to PF10 or A5 on the nucleo board. My code is below:When I run this it prints "Value is: 32767" once then stops. Because I am in conti...
I started getting this message when I try to debug my code. However, there are currently no breakpoints in my code at all. I have gotten this in the past and I deleted and redownloaded the IDE which I really do not want to do again. I am running i...
int USART2_Write(int ch){ //wait for TX buffer empty while (!(USART2->SR & USART_SR_TXE)) {} USART2->DR = ch; return 0; }   int USART2_Read(void) { while (!(USART2->SR & USART_SR_RXNE)) {} return USART2->DR; }   #ifdef __GNUC__ #define PUTCHAR...