Skip to content

Commit

Permalink
Use updated alchemy from project-chip/alchemy#6 to handle typedefs in…
Browse files Browse the repository at this point in the history
… arrays
  • Loading branch information
gmarcosb committed Oct 2, 2024
1 parent fef342e commit 440f6c4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Git: 0.9-fall2024-231-gf50161121
<attribute code="0x0000" side="server" define="SUPPORTED_ZONE_SOURCES" type="array" entryType="ZoneSourceEnum">SupportedZoneSources</attribute>
<attribute code="0x0001" side="server" define="ZONES" type="array" entryType="ZoneInformationStruct" optional="true">Zones</attribute>
<attribute code="0x0002" side="server" define="TIME_CONTROL" type="array" entryType="ZoneTriggeringTimeControlStruct" writable="true">TimeControl</attribute>
<attribute code="0x0003" side="server" define="SENSITIVITY" type="int8u" min="18446744073709551607" max="18446744073709551607" default="5" writable="true">Sensitivity</attribute>
<attribute code="0x0003" side="server" define="SENSITIVITY" type="int8u" min="1" max="10" default="5" writable="true">Sensitivity</attribute>
<command code="0x00" source="client" name="CreateTwoDCartesianZone" optional="true">
<description>This command SHALL create and store a TwoD Cartesian Zone.</description>
<access op="invoke" privilege="manage"/>
Expand Down Expand Up @@ -140,13 +140,13 @@ Git: 0.9-fall2024-231-gf50161121
</command>

<event code="0x0000" name="ZoneTriggered" priority="info" side="server">
<field id="0" name="Zones" array="true" type="ZoneID"/>
<field id="0" name="Zones" array="true" type="int16u"/>
<field id="1" name="Reason" type="ZoneEventTriggeredReasonEnum" min="0x00" max="0x00"/>
<description>This event SHALL be generated when a Zone is first triggered.</description>
</event>

<event code="0x0001" name="ZoneStopped" priority="info" side="server">
<field id="0" name="Zones" array="true" type="ZoneID"/>
<field id="0" name="Zones" array="true" type="int16u"/>
<field id="1" name="Reason" type="ZoneEventStoppedReasonEnum" min="0x00" max="0x01"/>
<description>This event SHALL be generated when either when the TriggerDetectedDuration value is exceeded by the TimeSinceInitialTrigger value or when the MaxDuration value is exceeded by the TimeSinceInitialTrigger value as described in ZoneTriggeringTimeControlStruct.</description>
</event>
Expand Down

0 comments on commit 440f6c4

Please sign in to comment.