Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed

- manipulation SetSystemSignalActivation for activation states

## [4.6.0] - 2025-10-30

- manipulation CreateNewContextStateWithAssociation for contexts
Expand Down
12 changes: 1 addition & 11 deletions src/t2iapi/activation_state/activation_state_requests.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
This Source Code Form is subject to the terms of the MIT License.
Copyright (c) 2022 Draegerwerk AG & Co. KGaA.
Copyright (c) 2022, 2026 Draegerwerk AG & Co. KGaA.

SPDX-License-Identifier: MIT
*/
Expand Down Expand Up @@ -57,14 +57,4 @@ message ComponentActivationTransitionRequest {
// in the corresponding state element
ComponentActivation start_activation = 2; // the start @ActivationState value
ComponentActivation end_activation = 3; // the end @ActivationState value
}

/*
Request to set the SystemSignalActivation with the given AlertSignalManifestation and AlertActivation for the alert
system with the given handle.
*/
message SetSystemSignalActivationRequest {
string handle = 1; // handle reference of the alert system
AlertSignalManifestation manifestation = 2;
AlertActivation activation = 3;
}
8 changes: 1 addition & 7 deletions src/t2iapi/activation_state/service.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
This Source Code Form is subject to the terms of the MIT License.
Copyright (c) 2022 Draegerwerk AG & Co. KGaA.
Copyright (c) 2022, 2026 Draegerwerk AG & Co. KGaA.

SPDX-License-Identifier: MIT
*/
Expand Down Expand Up @@ -56,10 +56,4 @@ service ActivationStateService {
t2iapi.activation_state.SetAlertConditionAndAlertSignalActivationStateRequest)
returns (BasicResponse);

/*
Set a SystemSignalActivation for a alert system with the given handle.
*/
rpc SetSystemSignalActivation (t2iapi.activation_state.SetSystemSignalActivationRequest)
returns (BasicResponse);
}

Loading