Tool/software: TI C/C++ Compiler
Found an uninitialized global variable in my project, but strange enough, it didn't create any problem in the field (yet)
Further checking found that If an uninitialized global variable is "initialized" as zero by TI compiler, or the micro always starts with some constant (0 or 0xffff) in memory, the program will work
Of course, I will fix the codes to take care this problem, but just out of curiosity, does anyone know if "unintialized" variables would be initialized to zero by TI compiler, or the micro will indeed start with some constant in RMA?