Hi,
I successfuly compile and run NDK with dm6437. Then I modfied this code to create UDP server, which can send the data to computer on demand. There is no problem but.... How to create new task which can run simultaneously with net task? I need this task like main and sometime (when is neccesary) call net function (like interrupt). How to create function which can sharing time witch net function?
I have MyTask from DSP/BIOS where I call TSK_SLEEP fo share the time with NC_NetStart (running forever) function which served UDP server.
void MyTask(void){
while(1){
//some computing
TSK_sleep(10); //how to invoke interrupt from UDP insted of this ??
}
}