Commit 4fe8c61e authored by garciay's avatar garciay
Browse files

Build CAM/DENM ATS with TCT3

Validate TA for CAM/DENM ATS with TCT3
parent 80146a34
Loading
Loading
Loading
Loading
+17 −2
Original line number Diff line number Diff line
@@ -16,6 +16,21 @@ module LibItsDenm_Templates {
    import from DENM_PDU_Descriptions language "ASN.1:1997" all;
    import from ITS_Container language "ASN.1:1997" all;
    
    group asn1Constants {
        
        const integer HeadingValue_wgs84North   := 0;
        const integer HeadingValue_wgs84East    := 900;
        const integer HeadingValue_wgs84South   := 1800;
        const integer HeadingValue_wgs84West    := 2700;
        const integer HeadingValue_unavailable  := 3600;
        
        const integer HeadingConfidence_withinZeroPointOneDegree    := 1;
        const integer HeadingConfidence_withinOneDegree             := 10;
        const integer HeadingConfidence_outOfRange                  := 126;
        const integer HeadingConfidence_unavailable                 := 127;
        
    } // End of group asn1Constants 
    
    group primitivesTemplates {
        
        /**
@@ -285,8 +300,8 @@ module LibItsDenm_Templates {
         * @desc    Send template for north direction with 0.1 confidence
         */
        template (value) Heading m_direction := {
            headingValue := HeadingValue_wgs84North_,
            headingConfidence := HeadingConfidence_withinZeroPointOneDegree_
            headingValue := HeadingValue_wgs84North,
            headingConfidence := HeadingConfidence_withinZeroPointOneDegree
        }
          
        /**