When trying to run the following simple program:
main.cfg:
var System = xdc.useModule('xdc.runtime.System');
System.SupportProxy = xdc.useModule('xdc.runtime.SysStd');
main.c
#include <xdc/runtime/Types.h>
#include <xdc/runtime/System.h>
int main()
{
System_printf("Hello world!\n");
return 0;
}
using ccsv4 and a ezdsp28335, i cannot seem to get any output in the console. Furthermore, I need to use the clock (Target menu -> clock) to benchmark a slightly more complex code, but when I try to do it I get:
C28xx: Error programming AET Job: This task cannot be accomplished with the existing AET resources.
Needles to say, I am getting the same problems when using a sys/bios based program.
What does this mean? What can I do?
Thanks,
Sebastian