Tool/software:
Hey,
how is it possible to create a software interrupt?
Where can i find the Interrupt vector table. I only see the option to create new hardware interrupts by this:
/* Register & enable interrupt */
HwiP_Params_init(&hwiPrms);
hwiPrms.intNum = CSLR_R5FSS0_CORE0_CONTROLSS_INTRXBAR0_OUT_0;
hwiPrms.priority = 0; /* setting high priority. optional */
hwiPrms.callback = &App_adcISR;
status = HwiP_construct(&gAdcHwiObject, &hwiPrms);
Best regards,
Marcel