Other Parts Discussed in Thread: MSP430F5529
Hello
i use the MSP430F5529 CPU with IAR compiler.
i used sys/bios version 6_35_04_50 and TI-RTOS version 1_21_00_09
I'm able to compile my project under "debug" but when i passe in relase mode i have this error :" Error[e46]: Undefined external "__write" referred in ?putchar ( C:\IAR Systems\Embedded Workbench 6.5\430\LIB\DLIB\dl430xsfn.r43 ) "
On my project i have no printf
In my current CFG file i have this :
var SysCallback = xdc.useModule('xdc.runtime.SysCallback');
System.SupportProxy = SysCallback;
If i replace it by the code below i can compile but with many warning because i have not define the call back.
var SysStd = xdc.useModule('xdc.runtime.SysStd');
System.SupportProxy = SysStd;
I want to know if they have a solution to used TI-RTOS without any putchar or a simple solution to build on release and debug without error?
in attachement my CFG file.