Skip to content

Commit

Permalink
Merge pull request #109 from e-flux-platform/feat/HW-1262-config-pres…
Browse files Browse the repository at this point in the history
…et-autoconfig

Adding some default keys in configuration of CS.
  • Loading branch information
rustik666 authored Dec 5, 2024
2 parents 2681b78 + f3c68af commit c8fb5f5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/lib/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,12 @@ export const defaultVariableConfig16: Variable16[] = [
description: 'Security profile used for communication',
value: '0',
},
{
key: 'ResetRetries',
description:
'Number of times to retry a reset of the Charging Station when a reset was unsuccessful.',
value: 1,
},
];

export interface Variable201 {
Expand Down Expand Up @@ -698,6 +704,25 @@ export const defaultVariableConfig201: Variable201[] = [
supportsMonitoring: false,
},
},
{
component: {
name: 'OCPPCommCtrlr',
},
variable: {
name: 'ResetRetries',
},
variableAttribute: [
{
value: '1',
persistent: true,
constant: false,
},
],
variableCharacteristics: {
dataType: 'integer',
supportsMonitoring: false,
},
},
{
component: {
name: 'SecurityCtrlr',
Expand Down

0 comments on commit c8fb5f5

Please sign in to comment.