Commit 9ccad87d authored by YannGarcia's avatar YannGarcia
Browse files

STF580: Add LTE-V2X support & SSPs changes

parent 77f9d4cf
Loading
Loading
Loading
Loading
+16 −1
Original line number Diff line number Diff line
@@ -113,4 +113,19 @@ module LibItsCam_Pics {
        
    } // end camPics

    group radioComm {

      /**
       * @desc Does radio communication use G5?
       * @see  ETSI TS 102 868-1 Table A.3
       */
      modulepar boolean PICS_G5_RADIO_COMM := true;
      
      /**
       * @desc Does radio communication use LTE-V2X?
       * @see  ETSI TS 102 868-1 Table A.3
       */
      modulepar boolean PICS_CV2X_RADIO_COMM := false;
      
    } // End of group radioComm
} // end LibItsCam_Pics
+7 −4
Original line number Diff line number Diff line
@@ -15,9 +15,6 @@ module LibItsHttp_TestSystem {
  import from LibCommon_Sync all;
  import from LibCommon_Time all;
  
  // LibItsCommon
  import from LibItsCommon_TestSystem all;
  
  // LibItsHttp
  import from LibItsHttp_TypesAndValues all;
  
@@ -25,12 +22,18 @@ module LibItsHttp_TestSystem {
    inout HttpMessage;
  }
  
  type component HttpComponent extends ItsBaseComponent { // FIXME To be rename into HttpTest
  type component HttpComponent extends SelfSyncComp { // FIXME To be rename into HttpTest
    port HttpPort httpPort;
    port HttpPort httpPort_notif;
    timer tc_ac := PX_TAC;
    timer tc_noac := PX_TNOAC;
    timer tc_wait := PX_TWAIT;

  } // End of component HttpComponent
  
  type component HttpTestAdapter { // FIXME To be rename into HttpTestSystem
    port HttpPort httpPort;
    port HttpPort httpPort_notif;
  } // End of component TestAdapter
  
} // End of module LibItsHttp_TestSystem