Skip to content

Commit

Permalink
add instance_id to the mdibVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
jannast committed Nov 21, 2024
1 parent 736becd commit 8e9b3f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/t2iapi/device/device_responses.proto
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ message InsertContainmentTreeEntryForSequenceIdResponse{
}

/*
Response containing the BasicResponse, SequenceId and the MdibVersion for the requested
Response containing the BasicResponse and the MdibVersion for the requested
pm:AbstractDeviceComponentDescriptor handle to indicate the time of the next calibration to the USER.
*/
message IndicateTimeOfNextCalibrationToUserResponse{
Expand Down
5 changes: 3 additions & 2 deletions src/t2iapi/device/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ enum CalibrationState{
}

/*
Represents a container for MDIB version attributes containing the SequenceId and MdibVersion
Represents a container for MDIB version attributes.
*/
message MdibVersion {
string sequence_id = 1; // SequenceId when finishing the rpc
uint64 mdib_version = 2; // MdibVersion when finishing the rpc
uint64 instance_id = 2; // InstanceId when finishing the rpc
uint64 mdib_version = 3; // MdibVersion when finishing the rpc
}

0 comments on commit 8e9b3f8

Please sign in to comment.