Commit 13602e9b authored by Denis Filatov's avatar Denis Filatov
Browse files

initial commit for SAEM release 2

parent 816e7854
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
@@ -50,6 +50,7 @@
 CountryCode::=UTF8String (SIZE(3)) -- ISO 3166 Alpha-3 code
 
 -- Area definitions
+/*
 ITSRPAREA::=CLASS{
 	&areaRef Int1,
 	&Area
@@ -64,7 +65,7 @@
 
 rpAreaCountryCode	ITSRPAREA::={&areaRef 0, &Area CountryCode}
 rpAreaGeoPolygon	ITSRPAREA::={&areaRef 1, &Area GeoPolygonArea}
-
+*/
 GeoPolygonArea::=SEQUENCE{
 	inclusions	GeoInclusionAreas,
 	exclusions	GeoExclusionAreas
@@ -302,7 +303,7 @@
 	iTSmsName	ITSObName,	-- human-readable name of ITS message set
 	iTSmsOwner	ITSOwnerInfo	-- owner of the ITS message set
 	}
-
+/*
 -- Regulatory region, 6.9.4
 -- whole set of registration information 
 ITSregRegionRegistry::=SEQUENCE OF ITSregRegion
@@ -322,7 +323,7 @@
 	polAuthority	ITS-RegPolicyAuthority,
 	polArea	ITS-RParea
 	}
-
+*/
 -- ITS Port Numbers, 6.9.6
 -- whole set of registration information 
 ITSportNumberRegistry::=SEQUENCE OF ITSportNumber
+27 −0
Original line number Diff line number Diff line
@@ -5,10 +5,10 @@
 BEGIN
 
 IMPORTS
-
+/*
 -- ISO 21218
 I-Param FROM ITSllsap {iso(1) standard(0) calm-ll-sap(21218) asnm-1 (1) version2 (2)}
-
+*/
 -- ISO 17419
 VarLengthNumber FROM CITSdataDictionary1 {iso(1) standard(0) cits-applMgmt (17419) dataDictionary (1) version1 (1)}
 
@@ -84,11 +84,11 @@
 	hundredPercent	(200),
 	unknown	(201)
 	}(0..255) -- values larger than 201 are prohibited
-
+/*
 RXcip::=SEQUENCE OF I-Param
 
 TXcip::=SEQUENCE OF I-Param -- may optionally be forwarded to peer ITS station
-
+*/
 
 -- SAM header extension elements
 
+43 −0
Original line number Diff line number Diff line
@@ -97,8 +97,8 @@
 	}
 
 ChannelOptions ::= SEQUENCE{
-	systemService	SystemService OPTIONAL, 
-	serviceProviderPort	ReplyAddress OPTIONAL,
+	systemService	NULL  OPTIONAL, -- SystemService
+	serviceProviderPort	NULL OPTIONAL, -- ReplyAddress
 	extensions	ServiceInfoExts OPTIONAL 
 	}
 
@@ -106,13 +106,13 @@
 	notUsed	(0), -- no change of channel
 	firstEntry	(1) 
 	}(0..31)
-
+/*
 ReplyAddress ::= PortNumber 
 
 SystemService ::= SEQUENCE OF SystemServiceAndContext
 
 SystemServiceAndContext ::= SamContext -- only ITS-AID = 0 allowed
-
+*/
 -- Service Info Extensions
 ServiceInfoExts ::= SEQUENCE OF ServiceInfoExt
 
@@ -219,7 +219,7 @@
 	{ GatewayMacAddress	IDENTIFIED BY c-GatewayMACaddress },
 	...
 	}
-
+/*
 -- Service Response Message
 -- not supported in IEEE 1609.3â„¢-2016
 Srm ::= SEQUENCE{
@@ -309,5 +309,5 @@
 --	{ 	IDENTIFIED BY  },
 	...
 	}
-
+*/
 END

LICENSE

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

+5 −2
Original line number Diff line number Diff line
# ASN.1 module for Services Announcement specification (SA) [ETSI EN 302 890-1]

These modules was published as a part of delivery **[ETSI TS 302 890-1 v1.2.1](https://www.etsi.org/deliver/etsi_en/302800_302899/30289001/01.02.01_60/en_30289001v010201p.pdf) (2019-07)**
This module is a tryout to update SAEM to release 2 build tree

## License

@@ -10,5 +10,8 @@ See the attached LICENSE file or visit https://forge.etsi.org/legal-matters.

## Dependencies

* The **[ITS-Container](https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2)** module from **[ETSI TS 102 894-2 v1.3.1](https://www.etsi.org/deliver/etsi_ts/102800_102899/10289402/01.03.01_60/ts_10289402v010301p.pdf)**: "Intelligent Transport Systems (ITS); Users and applications requirements; Part 2: Applications and facilities layer common data dictionary".
* The **[ETSI_ITS_CDD](https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2)** module from **[ETSI TS 102 894-2 v2.2.1](https://www.etsi.org/deliver/etsi_ts/102800_102899/10289402/02.02.01_60/ts_10289402v020201p.pdf)**: "Intelligent Transport Systems (ITS); Users and applications requirements; Part 2: Applications and facilities layer common data dictionary; Release 2".
* The **[ITSsa](https://standards.iso.org/iso/ts/16460/)** module from  **ISO/TS 16460**: "Intelligent transport systems — Communications access for land mobiles (CALM) — Communication protocol messages for global usage".
* The **[ITSee1](https://standards.iso.org/iso/ts/16460/)** module from  **ISO/TS 16460**: "Intelligent transport systems — Communications access for land mobiles (CALM) — Communication protocol messages for global usage".
* The **[CITSapplMgmtApplReg2](https://standards.iso.org/iso/17419/ed-1/en/17419.2.asn)** module from  **ISO/TS 17419**: "Intelligent transport systems — Cooperative systems — Globally unique identification".
* The **[CITSdataDictionary1](https://standards.iso.org/iso/17419/ed-1/en/17419.1.asn)** module from  **ISO/TS 17419**: "Intelligent transport systems — Cooperative systems — Globally unique identification".
Loading