Other Parts Discussed in Thread: MSP430G2553
I am using the MSP430G2553 with
#include <msp430.h>
#include <stdarg.h> //
My application code works in CCS v 5 but gives annoying syntax warnings?
Note: No syntax warnings in CCS v 4 ?
Syntax error lines ---> printf_puts(va_arg(a, char*));
printf_putc(va_arg(a, char));
i = va_arg(a, int);
n = va_arg(a, long);
i = va_arg(a, int);
I believe the "common" include stdarg.h has changed between versions?
Any ideas?