BIOS doe not support the functions fprint/printf etc.
It is recommended to convert the references to fprintf/printf to System_printf.
Of course we have to change:
1. The include file to:
#include <xdc/std.h>
#include <xdc/runtime/System.h>
#include <ti/sysbios/BIOS.h>
#include <ti/sdo/io/Stream.h>
#include <ti/sdo/io/drivers/Generator.h>
#include <xdc/cfg/global.h>
2. In the configuration file, we have to insert alos:
var SysMin = xdc.useModule('xdc.runtime.SysMin');
var System = xdc.useModule('xdc.runtime.System');
System.SupportProxy = SysMin;
However, there is a bug in the build process. The exeutable file is not build.