Hi,
Also - I didn't see HWI module in Sys Bios document, but it does mention "Hwi_create" function:
[quote]
3.3.1 Creating Hwi Objects
Hwi_Handle hwi0;
Hwi_Params hwiParams;
Error_Block eb;
Error_init(&eb);
Hwi_Params_init(&hwiParams);
hwiParams.arg = 5;
hwi0 = Hwi_create(id, hwiFunc, &hwiParams, &eb);
if (hwi0 == NULL) {
System_abort("Hwi create failed");
}
[/quote]
Is this the way to create HWIs? How can I use Hwi_eventMap with it?
Thanks,
Gilad