void CommModuleRequestServer_handleMessage(C1222AL* p, ACSE_Message* pMsg)
{
    // TODO: FILL THIS UP
    // if this is a message for the comm module, it should be a table request
    
    C1222AL_SimpleResponse(p, pMsg, C1222RESPONSE_IAR, 0);
}
Example #2
0
void C1222Stack_SimpleResponse(C1222Stack* p, ACSE_Message* pMsg, Unsigned8 response)
{
    C1222AL_SimpleResponse((C1222AL*)(&p->Xapplication), pMsg, response, 0);
}