Other Parts Discussed in Thread: SYSBIOS
Hello,
do you have any clues why Swi_post returns such error :
argument of type "void (*)(void)" is incompatible with parameter of type "ti_sysbios_knl_Swi_Handle"
It is written in documentation that argument of Swi_post function should be a handler to swi function. I'm completely new to DSP ans SYS/BIOS system so any help would be very appreciated.
There is part of code below:
void ledswi(void)
{
Log_info0("obsluga swi\n");
}
void migacz(void)
{
Log_info0("obsluga hwi\n");
Swi_post(&ledswi);
}
"migacz" is my basic HWI function and "ledswi" is my SWI function.

