Skip to content
Snippets Groups Projects
Commit 794bda83 authored by berge's avatar berge
Browse files

Renamed back Ptc* component to Its*

parent 024ce6da
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......@@ -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 {
......
......@@ -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);
......@@ -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 {
......
......@@ -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;
......@@ -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;
......@@ -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;
......@@ -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;
......
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