Hello!
I am a fresh beginner in the domain of embedded systems and this MSP430F5529 is my very first development board. I am now trying to make an ADC conversion and send it through the UART to try a signal treatment algorithm with real-world values.
I used an example code in Energia that i modified a little bit:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
// Comment: I see many people preferring the 115200 BR for this board.
// Is there a particular reason for this choice?
}
// the loop routine runs over and over again