RossGE wrote:
Thanks changing the byte count on the string converter is allowing me to output the proper size. However, when i deleted all the information between the serial port and the while loop the converter begin to get over run with data.
That would indicate you're not reading the data off the serial port fast enough. You can either increase your loop time, or keep the function that's setting the buffer size. Keep in mind, though, that you may still get overruns with the larger buffer if you don't read it out fast enough. It's just less likely to happen.