Skip to content
Snippets Groups Projects
Commit 3c35b6a8 authored by berge's avatar berge
Browse files

Renamed back Ptc* component to Its*

parent 794bda83
No related branches found
No related tags found
No related merge requests found
......@@ -15,10 +15,10 @@ module LibItsGeoNetworking_Functions {
* @desc Create Facility component and connects GeoNetworking port
* @param p_ptcDenm returned Facility component variable
*/
function f_cfGeoNetworkingUp(out PtcNt p_ptcGeoNetworking) {
function f_cfGeoNetworkingUp(out ItsNt p_ptcGeoNetworking) {
// Create Facility component
p_ptcGeoNetworking := PtcNt.create("GeoNetworking Tester");
p_ptcGeoNetworking := ItsNt.create("GeoNetworking Tester");
// map ports
map(p_ptcGeoNetworking:geoNetworkingPort, system:geoNetworkingPort);
......@@ -29,7 +29,7 @@ module LibItsGeoNetworking_Functions {
* @desc Wait for component to finish and unmap GeoNetworking ports
* @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;
alt {
[] p_ptcGeoNetworking.done {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment