Part Number: TM4C1294NCPDT
Tool/software: TI C/C++ Compiler
I am new in TIRTOS and ccs
I am sending one message from TASK1 to TASK2 then it is working proprly
1)I use to send Message from Task 1
Queue_put(xApplTimer_Queue, &(st_Appl_timer[EN_INPUT_CHANNEL_0].elem));
2) Then I use in Task 2
if(! Queue_empty(xAppl_Queue))
{
int temp = 1;
st_Appl_pt = Queue_get(xAppl_Queue);
// st_Appl_pt = Queue_dequeue(xAppl_Queue);
temp = st_Appl_pt->appl_control;
}
But I want to send message from Timer 3a ISR with 50 ms intrrupt
but My application crash in TASK 2 while reciving
In ROV it displays HW exception
Please guide us how to send queue message from ISR.
Regards,
Anushka