Tool/software: TI C/C++ Compiler
Hi,
I am currently using CCS-8.2 to run a code on launchxl f28379d. I have a code which accesses atof function. The function runs fine when calledwithin an infinite loop-for(;;)
However, If I use "if" statement with a volatile variable, it stops at:
#ifdef _INLINE
static __inline double atof(const char *_st)
{
return strtod(_st, (char **)0);
}
#endif /* _INLINE */
Can anyone give me a solution to it?