This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/CC1350STK: Hard Faulting when using "to_string" or an ITOA Function

Part Number: CC1350STK
Other Parts Discussed in Thread: CC1350

Tool/software: Code Composer Studio

Hello,

I have been developing firmware for our own custom board using the CC1350 in Code Composer studio. Our project relies on an LCD library using C++ so we are using strings. I grab sensor data as doubles and convert those using this third party LCD's ITOA function to display out. It worked great, although once I combined this LCD project with our BLE project every time I try using an ITOA function I get a hard fault shortly after it converts it. Looking at the string it looks perfectly fine, it has all the correct characters and is identical to a string if I set it directly myself (meaning this only happens when using the third party ITOA). I tried using the C++ to_string library function and get the same hard fault.

Below is the snippet of code I am looking at with 719 line being the issue. If it is commented out it runs fine, but of course undesirably as I need to dynamically change data.

Thank you for your time!