Commit 79f6072b authored by YannGarcia's avatar YannGarcia
Browse files

Merging TTF002 in TTF011 - Phase1: AtsCAM, AtsDENM, AtsGeoNetworking, AtsSecurity, AtsPki

parent f3a20d0a
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
[submodule "lib/asn1"]
	path = lib/asn1
	url = https://forge.etsi.org/rep/ITS/asn1/cam_en302637_2.git
	branch = testing

ItsCam_TestCases.ttcn

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

ItsCam_TestControl.ttcn

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

ItsCam_TpFunctions.ttcn

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

+0 −40
Original line number Diff line number Diff line
module LibItsCam_EncdecDeclarations {

    // LibIts
    import from CAM_PDU_Descriptions language "ASN.1:1997" all;
    
    // LibItsCam
    import from LibItsCam_TypesAndValues all; 
    import from LibItsCam_TestSystem all; 

    external function fx_enc_CamReq (CamReq p) return bitstring
        with {extension "prototype(convert) encode(LibIts_Interface)"}
    
    external function fx_dec_CamReq (inout bitstring b, out CamReq p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}

    external function fx_dec_CamInd (inout bitstring b, out CamInd p) return integer
        with {extension "prototype(sliding) decode(LibIts_Interface)"}
        
    external function fx_enc_CAM (CAM p) return bitstring
        with {extension "prototype(convert) encode(PER)"}

    external function fx_dec_CAM (inout bitstring b, out CAM p) return integer
        with {extension "prototype(sliding) decode(PER)"}

    external function fx_enc_UtCamInitialize (UtCamInitialize p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_enc_UtCamChangePosition (UtCamChangePosition p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_enc_UtCamTrigger (UtCamTrigger p) return bitstring
        with {extension "prototype(convert) encode(UpperTester)"}
    
    external function fx_dec_UtCamResults (inout bitstring b, out UtCamResults p) return integer
        with {extension "prototype(sliding) decode(UpperTester)"}
    
    external function fx_dec_UtCamEventInd (inout bitstring b, out UtCamEventInd p) return integer
        with {extension "prototype(sliding) decode(UpperTester)"}
    
} // End of module LibItsCam_EncdecDeclarations 
Loading