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
The rejection reports in service 1 carry the following two parameters:
Packet Version Number (3 bits) of TC being rejected
Packet Identifier (13 bits) of TC being rejected
These parameters are currently treated as separate parameters for which dedicated getter and setter methods are provided. The new Cordet FW Editor, however, does not handled parameters with size below one byte. Hence, the two parameters are treated as one single parameter called Ver:VersNmbPcktId.
In order to maintain compatibility with the editor output, I need to replace references to the getter and setter methods for the 'Packet Version Number' and 'Packet Identifier' functions with references to the getter and setter methods for parameter 'Ver:VersNmbPcktId'. The changes must be done in the following functions:
/src/Ver/CrPsCmdPrgrFailFunc.c
./src/Ver/CrPsPcktReroutingFailFunc.c
./src/Ver/CrPsCmdVerSuccFunc.c
./src/Ver/CrPsCmdVerFailFunc.c
./src/Ver/CrPsCmdPrgrSuccFunc.c
The text was updated successfully, but these errors were encountered:
The functions in the Ver service have been modified as indicated above. The compilation errors have disappeared but I leave the ticket open because the new implementation still needs to be tested.
The rejection reports in service 1 carry the following two parameters:
These parameters are currently treated as separate parameters for which dedicated getter and setter methods are provided. The new Cordet FW Editor, however, does not handled parameters with size below one byte. Hence, the two parameters are treated as one single parameter called Ver:VersNmbPcktId.
In order to maintain compatibility with the editor output, I need to replace references to the getter and setter methods for the 'Packet Version Number' and 'Packet Identifier' functions with references to the getter and setter methods for parameter 'Ver:VersNmbPcktId'. The changes must be done in the following functions:
The text was updated successfully, but these errors were encountered: