Other Parts Discussed in Thread: MSP430FR2311
Tool/software:
Hi,
I tried to print hello world in my console, but it not working.
#include <stdio.h>
#include <msp430.h>
/**
* hello.c
*/
int main(void)
{
WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer
printf("Hello World!\n");
return 0;
}
This is my code. I put break point in printf and entering trgmsg.c file.
Thank you
Athulya