-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
High
-
Code Composer Studio
-
CCDSK-3797
-
-
Generic
-
-
-
Will be addressed in a future SDK release. In the meantime there is a workaround documented.
For compiler parser errors with ltoa() routine:
"C:/ti/simplelink_cc2640r2_sdk_3_40_00_10/source/ti/ble5stack/osal/src/common/osal.c", line 413: error #167: too few arguments in function call
Bug fix EXT_EP-9216 changed stdlib.h definition of ltoa() from below:
char* ltoa(long val, char *buffer);
to instead align with gcc implementation with 3 parameters:
char* ltoa( long value, char* buffer, int radix );