Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
I spent the past couple of days tracking down a memory corruption issue - I narrowed it down to cstdlib snprintf(). So after some digging, I found that TI created their own implementations in the DPL library, so I manually linked in that library, ti//kernel/nortos/lib/gcc/m0p/nortos_mspm0l11xx_l13xx.a, started using SystemP_snprintf(), and voilia, problem disappeared! Makes sense why TI generated their own. OK, so now my question is, can I have that automatically linked in via SysConfig without having to manually add the -L and -l to my makefile? Having to hardcode it breaks a bit of the modularity. I thought that checking the 'TI Drivers' checkbox in SysConfig would do it, but that seems to add the `ti/drivers/lib/gcc/m0p/drivers_mspm0l11xx_l13xx.a` library, which is not the same. Am I missing something or is there some way in SysConfig to have it include the nortos kernel library? Thanks