Hello, I am new in DSP/BIOS and I want to learn how to create and use a task in DSP/BIOS. I am using 620sim target (a simulator). I wrote a simple hello world and it works well. Now I want to add a new task to it. I use visual configure to add a task to project ( with the name of Task). My code is as follow: #include <std.h> Void Task(Arg id_arg) LOG_printf(&trace,"In Task\n"); When I compile the code, I am getting the following warning: [Linking...] "C:\ProgramFiles\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -@"Debug.lkf" and when I am running this code, the output is as follow: 0 Program started This means that Task never called. What is the problem and how can I solve it? I have another question: Is there any web page that has all the documents related to dsp/bios and their name and title, so I can go there and select the appropriate one for reading? Regards
#include <log.h>
extern LOG_Obj trace;
void main()
{
LOG_printf(&trace,"Program started\n");
}
{
TSK_disable();
IDL_run();
TSK_enable();
}
<Linking>
>> C:\\ProgramFiles\\CCStudio_v3.3\\MyProjects\\TestTask\\TestTaskcfg.cmd, line 96: warning:
symbol _Task from file
C:\\ProgramFiles\\CCStudio_v3.3\\MyProjects\\TestTask\\Debug\\main.obj being redefined