As a beginner, I am happy to be writing and running code for my MSP430G2553 launchpad to send and recieve characters over the UART using a FTDI USB-serial cable connected and running PUTTY terminal at 115200. I have gotten to the point of printing out a menu and interpreting character inputs, such as turning on and off the LED when I enter 'a'. I echo input characters and everything works great for simple control.
But now I am at a point where I would like to input and output integer values. Converting a series of UART digit input characters (e. g. 0123456789) by multiplying by the appropriate 10's place seems to be a doable algorithm for me to formulate in C. While the reverse, UART outputing a string of characters that represents an integer value is a more complicated task.
I know both these operations are likely done routinely in many applications, so my question is: Is there a standard C library function in Code Composer that can assist in this, or does everyone write their own basic C code for these conversions?
BJF