Skip to content

Commit

Permalink
Fix compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinpan1 committed Nov 12, 2024
1 parent 0067724 commit 3afda1a
Show file tree
Hide file tree
Showing 2 changed files with 242 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,23 @@ cluster OtaSoftwareUpdateRequestor = 42 {
command AnnounceOTAProvider(AnnounceOTAProviderRequest): DefaultSuccess = 0;
}

/** Nodes should be expected to be deployed to any and all regions of the world. These global regions
may have differing common languages, units of measurements, and numerical formatting
standards. As such, Nodes that visually or audibly convey information need a mechanism by which
they can be configured to use a user’s preferred language, units, etc */
cluster LocalizationConfiguration = 43 {
revision 1; // NOTE: Default/not specifically set

attribute access(write: manage) char_string<35> activeLocale = 0;
readonly attribute char_string supportedLocales[] = 1;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
readonly attribute attrib_id attributeList[] = 65531;
readonly attribute bitmap32 featureMap = 65532;
readonly attribute int16u clusterRevision = 65533;
}

/** This cluster is used to describe the configuration and capabilities of a physical power source that provides power to the Node. */
cluster PowerSource = 47 {
revision 1; // NOTE: Default/not specifically set
Expand Down Expand Up @@ -2663,6 +2680,16 @@ endpoint 0 {
handle command AnnounceOTAProvider;
}

server cluster LocalizationConfiguration {
ram attribute activeLocale;
callback attribute supportedLocales;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute attributeList;
ram attribute featureMap default = 0;
ram attribute clusterRevision default = 1;
}

server cluster GeneralCommissioning {
ram attribute breadcrumb default = 0x0000000000000000;
callback attribute basicCommissioningInfo;
Expand Down Expand Up @@ -2708,6 +2735,7 @@ endpoint 0 {
ram attribute clusterRevision default = 1;

handle command RetrieveLogsRequest;
handle command RetrieveLogsResponse;
}

server cluster GeneralDiagnostics {
Expand Down Expand Up @@ -2872,6 +2900,7 @@ endpoint 2 {
ram attribute clusterRevision default = 2;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down Expand Up @@ -2933,6 +2962,7 @@ endpoint 3 {
ram attribute clusterRevision default = 2;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down Expand Up @@ -2993,6 +3023,7 @@ endpoint 4 {
ram attribute clusterRevision default = 2;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down Expand Up @@ -3053,6 +3084,7 @@ endpoint 5 {
ram attribute clusterRevision default = 2;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down Expand Up @@ -3113,6 +3145,7 @@ endpoint 6 {
ram attribute clusterRevision default = 2;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down Expand Up @@ -3174,6 +3207,7 @@ endpoint 7 {
ram attribute clusterRevision default = 2;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down Expand Up @@ -3235,6 +3269,7 @@ endpoint 8 {
ram attribute clusterRevision default = 4;

handle command Identify;
handle command TriggerEffect;
}

server cluster Groups {
Expand Down
Loading

0 comments on commit 3afda1a

Please sign in to comment.