-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'dw/master'
Conflicts: IBIS-IP_common_V2.4.xsd
- Loading branch information
Showing
5 changed files
with
844 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0"?> | ||
<!-- Mit XMLSpy v2018 sp1 (x64) (http://www.altova.com) von Torsten Franke (IVU Traffic Technologies AG) bearbeitet --> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:include schemaLocation="IBIS-IP_common_V2.3.xsd"/> | ||
<!--==== AnalogueRadioService Operations ====--> | ||
<xs:group name="AnalogRadioServiceOperations"> | ||
<xs:sequence> | ||
<!--=====================================================--> | ||
<!--=== Operation related to the AnalogRadioService ===--> | ||
<!--=====================================================--> | ||
<!-- this operation is used to send a telegram from the Onboard unit to the analo radio device --> | ||
<xs:element name="AnalogRadioService.SendTelegram" type="AnalogRadioService.RadioTelegramStructure"/> | ||
</xs:sequence> | ||
</xs:group> | ||
<!--===================================================================================--> | ||
<!--=== Defition of operation and data structures related to the AnalogRadioService ===--> | ||
<!--===================================================================================--> | ||
<!--=== SendTelegram Request ===--> | ||
<xs:element name="AnalogRadioService.SendTelegram" type="AnalogRadioService.RadioTelegramStructure"/> | ||
<xs:complexType name="AnalogRadioService.RadioTelegramStructure"> | ||
<xs:sequence> | ||
<xs:element name="RawTelegram" type="IBIS-IP.string"/> | ||
<xs:element name="AnalogChannel" type="IBIS-IP.unsignedInt"/> | ||
<xs:element name="Bitrate" type="BitrateEnumeration"/> | ||
<xs:element name="Repeats" type="IBIS-IP.unsignedInt" minOccurs="0"/> | ||
<xs:element name="MaxRepeatInterval" type="IBIS-IP.unsignedInt" minOccurs="0"/> | ||
<xs:element name="Transmitter" type="TransmitterStructure" minOccurs="0"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:complexType name="TransmitterStructure"> | ||
<xs:sequence> | ||
<xs:element name="LeadTime" type="IBIS-IP.unsignedInt" minOccurs="0"/> | ||
<xs:element name="HoldTime" type="IBIS-IP.unsignedInt" minOccurs="0"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:simpleType name="BitrateEnumeration"> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="1200"/> | ||
<xs:enumeration value="2400"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.