I'm using Code Composer Studio for a USB to UART program using a MSP430 5438A. I need to convert integers to string characters and was trying to use the itoa function which apparently is not supported by Code Composer. I realize sprintf would probably work, but one of the constraints for this program is for it to be as efficient and low-power as possible and I've been told that using the sprintf function with microcontrollers is a bad idea.
Is there a library I can include in Code Composer which allows me to use to the itoa function? If not, is there an alternative to using sprintf for integer to character conversion? Any suggestions and comments would be appreciated.
Thanks.