Hi,
Using CCS 4.1 I created a project for MSP430.
The program runs from RAM:
#include "msp430f5529.h"
#include "stdio.h"
int main (void)
{
printf ("Hello\n");
return 0;
}
The code runs OK but no "Hello" is printed on the console.
I'm using the switch --printf_support=minimal but this switch should support regular strings.
Can you help ?
Thanks.