Commit 3c35b6a8 authored by berge's avatar berge
Browse files

Renamed back Ptc* component to Its*

parent 794bda83
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -15,10 +15,10 @@ module LibItsGeoNetworking_Functions {
     * @desc 	Create Facility component and connects GeoNetworking port
     * @desc 	Create Facility component and connects GeoNetworking port
     * @param	p_ptcDenm returned Facility component variable
     * @param	p_ptcDenm returned Facility component variable
     */    
     */    
    function f_cfGeoNetworkingUp(out PtcNt p_ptcGeoNetworking) {
    function f_cfGeoNetworkingUp(out ItsNt p_ptcGeoNetworking) {
        
        
        // Create Facility component
        // Create Facility component
        p_ptcGeoNetworking := PtcNt.create("GeoNetworking Tester");
        p_ptcGeoNetworking := ItsNt.create("GeoNetworking Tester");
        
        
        // map ports
        // map ports
        map(p_ptcGeoNetworking:geoNetworkingPort, system:geoNetworkingPort);
        map(p_ptcGeoNetworking:geoNetworkingPort, system:geoNetworkingPort);
@@ -29,7 +29,7 @@ module LibItsGeoNetworking_Functions {
     * @desc 	Wait for component to finish and unmap GeoNetworking ports
     * @desc 	Wait for component to finish and unmap GeoNetworking ports
     * @param	p_camPtc Facility component variable
     * @param	p_camPtc Facility component variable
     */    
     */    
    function f_cfGeoNetworkingDown(in PtcNt p_ptcGeoNetworking) runs on ItsMtc {    
    function f_cfGeoNetworkingDown(in ItsNt p_ptcGeoNetworking) runs on ItsMtc {    
    	tc_guard.start;
    	tc_guard.start;
        alt {
        alt {
        	[] p_ptcGeoNetworking.done {
        	[] p_ptcGeoNetworking.done {