-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add new device response for indicate next cal time (#99)
Rework device manipulation IndicateTimeOfNextCalibrationToUser with new response IndicateTimeOfNextCalibrationToUserResponse. # Checklist The following aspects have been respected by the author of this pull request, confirmed by both pull request assignee **and** reviewer: * Changelog update (necessity checked and entry added or not added respectively) * [x] Pull Request Assignee * [x] Reviewer * README update (necessity checked and entry added or not added respectively) * [x] Pull Request Assignee * [x] Reviewer
- Loading branch information
Showing
4 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "MdibVersionGroupProto"; | ||
|
||
import "google/protobuf/wrappers.proto"; | ||
|
||
/* | ||
Represents the attributeGroup MdibVersionGroup (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message MdibVersionGroup { | ||
google.protobuf.UInt64Value mdib_version = 1; // optional MdibVersion when finishing the rpc | ||
string sequence_id = 2; // SequenceId when finishing the rpc | ||
google.protobuf.UInt64Value instance_id = 3; // optional InstanceId when finishing the rpc | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters