Loading ttcn/CAM/LibItsCam_Functions.ttcn +3 −3 Original line number Diff line number Diff line Loading @@ -15,10 +15,10 @@ module LibItsCam_Functions { * @desc Create Facility component and map CAM port * @param p_camPtc returned Facility component variable */ function f_cfCamUp(out PtcFa p_ptcCam) { function f_cfCamUp(out ItsFa p_ptcCam) { // Create Facility component p_ptcCam := PtcFa.create("CAM Tester"); p_ptcCam := ItsFa.create("CAM Tester"); // map ports map(p_ptcCam:camPort, system:camPort); Loading @@ -29,7 +29,7 @@ module LibItsCam_Functions { * @desc Wait for component to finish and unmap CAM ports * @param p_camPtc Facility component variable */ function f_cfCamDown(in PtcFa p_ptcCam) runs on ItsMtc { function f_cfCamDown(in ItsFa p_ptcCam) runs on ItsMtc { tc_guard.start; alt { Loading ttcn/DENM/LibItsDenm_Functions.ttcn +3 −3 Original line number Diff line number Diff line Loading @@ -15,10 +15,10 @@ module LibItsDenm_Functions { * @desc Create Facility component and connects DENM port * @param p_ptcDenm returned Facility component variable */ function f_cfDenmUp(out PtcFa p_ptcDenm) { function f_cfDenmUp(out ItsFa p_ptcDenm) { // Create Facility component p_ptcDenm := PtcFa.create("DENM Tester"); p_ptcDenm := ItsFa.create("DENM Tester"); // map ports map(p_ptcDenm:denmPort, system:denmPort); Loading @@ -29,7 +29,7 @@ module LibItsDenm_Functions { * @desc Wait for component to finish and unmap DENM ports * @param p_camPtc Facility component variable */ function f_cfDenmDown(in PtcFa p_ptcDenm) runs on ItsMtc { function f_cfDenmDown(in ItsFa p_ptcDenm) runs on ItsMtc { tc_guard.start; alt { [] p_ptcDenm.done { Loading ttcn/LibIts_Interface.ttcn +4 −4 Original line number Diff line number Diff line Loading @@ -19,7 +19,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Access layer */ type component PtcAc { type component ItsAc { // AC1 ports port MacM5Port macM5Port; Loading @@ -31,7 +31,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Facility layer */ type component PtcFa { type component ItsFa { // FA1 ports port CamPort camPort; Loading @@ -50,7 +50,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Management layer */ type component PtcMgt { type component ItsMgt { // MGT1 ports port IiscPort iiscPort; Loading @@ -59,7 +59,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Network and Transport layer */ type component PtcNt { type component ItsNt { // NT1 ports port BtpPort btpPort; Loading Loading
ttcn/CAM/LibItsCam_Functions.ttcn +3 −3 Original line number Diff line number Diff line Loading @@ -15,10 +15,10 @@ module LibItsCam_Functions { * @desc Create Facility component and map CAM port * @param p_camPtc returned Facility component variable */ function f_cfCamUp(out PtcFa p_ptcCam) { function f_cfCamUp(out ItsFa p_ptcCam) { // Create Facility component p_ptcCam := PtcFa.create("CAM Tester"); p_ptcCam := ItsFa.create("CAM Tester"); // map ports map(p_ptcCam:camPort, system:camPort); Loading @@ -29,7 +29,7 @@ module LibItsCam_Functions { * @desc Wait for component to finish and unmap CAM ports * @param p_camPtc Facility component variable */ function f_cfCamDown(in PtcFa p_ptcCam) runs on ItsMtc { function f_cfCamDown(in ItsFa p_ptcCam) runs on ItsMtc { tc_guard.start; alt { Loading
ttcn/DENM/LibItsDenm_Functions.ttcn +3 −3 Original line number Diff line number Diff line Loading @@ -15,10 +15,10 @@ module LibItsDenm_Functions { * @desc Create Facility component and connects DENM port * @param p_ptcDenm returned Facility component variable */ function f_cfDenmUp(out PtcFa p_ptcDenm) { function f_cfDenmUp(out ItsFa p_ptcDenm) { // Create Facility component p_ptcDenm := PtcFa.create("DENM Tester"); p_ptcDenm := ItsFa.create("DENM Tester"); // map ports map(p_ptcDenm:denmPort, system:denmPort); Loading @@ -29,7 +29,7 @@ module LibItsDenm_Functions { * @desc Wait for component to finish and unmap DENM ports * @param p_camPtc Facility component variable */ function f_cfDenmDown(in PtcFa p_ptcDenm) runs on ItsMtc { function f_cfDenmDown(in ItsFa p_ptcDenm) runs on ItsMtc { tc_guard.start; alt { [] p_ptcDenm.done { Loading
ttcn/LibIts_Interface.ttcn +4 −4 Original line number Diff line number Diff line Loading @@ -19,7 +19,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Access layer */ type component PtcAc { type component ItsAc { // AC1 ports port MacM5Port macM5Port; Loading @@ -31,7 +31,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Facility layer */ type component PtcFa { type component ItsFa { // FA1 ports port CamPort camPort; Loading @@ -50,7 +50,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Management layer */ type component PtcMgt { type component ItsMgt { // MGT1 ports port IiscPort iiscPort; Loading @@ -59,7 +59,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Network and Transport layer */ type component PtcNt { type component ItsNt { // NT1 ports port BtpPort btpPort; Loading