SSEM-PDU-Descriptions.asn 1.52 KB
Newer Older
-- @brief Specification of the Signal status extended Message ETSI TS 103 301
-- Latest version available at @url https://forge.etsi.org/rep/ITS/asn1/is_ts103301.git
Denis Filatov's avatar
Denis Filatov committed

SSEM-PDU-Descriptions {
    itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts103301 (103301) ssem (4) version2 (2)
DEFINITIONS AUTOMATIC TAGS ::=
ritterth's avatar
ritterth committed
-- @brief Include DSRC
SignalStatusMessage
ritterth's avatar
ritterth committed
FROM ETSI-ITS-DSRC {
  itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts103301 (103301) dsrc (6) version2 (2)
}
WITH SUCCESSORS
-- @brief Include ETSI TS 102 894-2
-- Include references from @url https://forge.etsi.org/rep/ITS/ITS_ASN1/blob/master/CDD_TS102894-2/ITS-Container.asn
ItsPduHeader
ritterth's avatar
ritterth committed
FROM ETSI-ITS-CDD {
  itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-4 (4) minor-version-1 (1)
ritterth's avatar
ritterth committed
}
WITH SUCCESSORS;

-- Signal status extended Message

-- @brief Signal status extended Message Root
-- This DF includes DEs for the SSEM: protocolVersion, the SSEM message type identifier _messageID_ and
-- the station identifier _stationID_ of the originating ITS-S and the signal status data ISO TS 19091.
Denis Filatov's avatar
Denis Filatov committed
SSEM ::= SEQUENCE {
    -- @details header
    -- The DE _protocolVersion_ is used to select the appropriate protocol decoder at the receiving ITS-S.
    --   It shall be set to 2.
    -- The DE _messageID_ shall be ssem(10).
Denis Filatov's avatar
Denis Filatov committed
    header  ItsPduHeader,
    -- @details ssm
    -- The DE _ssm_ contains the Signal status data as defined in ISO TS 19091.
Denis Filatov's avatar
Denis Filatov committed
    ssm     SignalStatusMessage
}

END