@@ -23,24 +23,28 @@ namespace Fw {
2323
2424 // ! Deserialize a parameter from a parameter buffer
2525 // !
26- // ! \param id: Parameter ID of the parameter being deserialized
26+ // ! \param base_id: The component base ID of the parameter being deserialized
27+ // ! \param local_id: The local parameter ID of the parameter being deserialized
2728 // ! \param prmStat: The parameter status of the parameter being deserialized
2829 // ! \param buff: The buffer contained the serialized parameter
2930 // !
3031 // ! \return: The status of the deserialize operation
3132 virtual SerializeStatus deserializeParam (
32- const FwPrmIdType id,
33+ const FwPrmIdType base_id,
34+ const FwPrmIdType local_id,
3335 const ParamValid prmStat,
3436 ParamBuffer& buff) = 0;
3537
3638 // ! Serialize a parameter into a parameter buffer
3739 // !
38- // ! \param id: Parameter ID of the parameter to serialized
40+ // ! \param base_id: The component base ID of the parameter being deserialized
41+ // ! \param local_id: The local Parameter ID of the parameter to serialized
3942 // ! \param buff: The buffer to serialize the parameter into
4043 // !
4144 // ! \return: The status of the serialize operation
4245 virtual SerializeStatus serializeParam (
43- const FwPrmIdType id,
46+ const FwPrmIdType base_id,
47+ const FwPrmIdType local_id,
4448 ParamBuffer& buff) const = 0;
4549 };
4650
0 commit comments