You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In FragDecoderInit : Init of FragDecoder.Status.FragNbRx and FragDecoder.Status.MatrixError are missing.
#if( FRAG_DECODER_FILE_HANDLING_NEW_API==1 )
voidFragDecoderInit( uint16_tfragNb, uint8_tfragSize, FragDecoderCallbacks_t*callbacks )
#elsevoidFragDecoderInit( uint16_tfragNb, uint8_tfragSize, uint8_t*file, uint32_tfileSize )
#endif
{
#if( FRAG_DECODER_FILE_HANDLING_NEW_API==1 )
FragDecoder.Callbacks=callbacks;
#elseFragDecoder.File=file;
FragDecoder.FileSize=fileSize;
#endifFragDecoder.FragNb=fragNb; // FragNb = FRAG_MAX_SIZEFragDecoder.FragSize=fragSize; // number of byte on a rowFragDecoder.Status.FragNbLastRx=0;
FragDecoder.Status.FragNbLost=0;
FragDecoder.Status.FragNbRx=0;
FragDecoder.Status.MatrixError=0;
FragDecoder.M2BLine=0;
Actual Behavior
sequenceDiagram
Gateway->>+Node: McGroupSetupReq
Node->>-Gateway: McGroupSetupAns
Gateway->>+Node: McClassCSessionReq
Node->>-Gateway: McClassCSessionAns
Gateway->>+Node: FragSessionSetupReq
Node->>-Gateway: FragSessionSetupAns
Gateway-->>+Node: FAILED TO SEND DATAFRAG
Gateway-->>+Node: FAILED TO SEND DATAFRAG
Gateway-->>+Node: FAILED TO SEND DATAFRAG
Node->>Gateway: FragSessionSetupAns (FragNbRx!=0 or egal to last frag session)
Gateway->>Gateway : Block can be considered as ok because of status
Loading
Expected Behavior
sequenceDiagram
Gateway->>+Node: McGroupSetupReq
Node->>-Gateway: McGroupSetupAns
Gateway->>+Node: McClassCSessionReq
Node->>-Gateway: McClassCSessionAns
Gateway->>+Node: FragSessionSetupReq
Node->>-Gateway: FragSessionSetupAns
Gateway-->>+Node: FAILED TO SEND DATAFRAG
Gateway-->>+Node: FAILED TO SEND DATAFRAG
Gateway-->>+Node: FAILED TO SEND DATAFRAG
Node->>Gateway: FragSessionSetupAns (FragNbRx=0)
Gateway->>Gateway : Block can be considered as nok because of status
Loading
The text was updated successfully, but these errors were encountered:
Description
In FragDecoderInit : Init of FragDecoder.Status.FragNbRx and FragDecoder.Status.MatrixError are missing.
Actual Behavior
Expected Behavior
The text was updated successfully, but these errors were encountered: