Skip to content

Commit

Permalink
fix lint messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jannast committed Oct 9, 2023
1 parent 14d2a46 commit 3ce6758
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/t2iapi/metric/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,15 @@ enum OperationModeStatus {

/*
Defines the possible non-exclusive MODE OF OPERATION according to MPKP (11073-10701-2022).
These are represented as an enum metric where the instances of pm:AllowedValue have given pm:Type.
These are represented as an enum metric where the instances of pm:AllowedValue have the pm:Type of:
- MDC_MODE_OF_OPERATION_ON,
- MDC_MODE_OF_OPERATION_OFF, and
- optionally MDC_MODE_OF_OPERATION_PAUSED.
*/
enum ModeOfOperation {
MDC_MODE_OF_OPERATION_ON = 0; // mode of operation is applied
MDC_MODE_OF_OPERATION_OFF = 1; // mode of operation is not applied, but available
MDC_MODE_OF_OPERATION_PAUSED = 2; // mode of operation is not applied, but available
MODE_OF_OPERATION_ON = 0; // mode of operation is applied
MODE_OF_OPERATION_OFF = 1; // mode of operation is not applied, but available
MODE_OF_OPERATION_PAUSED = 2; // mode of operation is not applied, but available
}

/*
Expand Down

0 comments on commit 3ce6758

Please sign in to comment.