1. 12 Nov, 2024 2 commits
  2. 09 Nov, 2024 1 commit
  3. 08 Nov, 2024 9 commits
  4. 07 Nov, 2024 23 commits
  5. 06 Nov, 2024 5 commits
    • Guido Casati's avatar
      Refactor NRRCConfig · b61de645
      Guido Casati authored
      * the goal of this function is to initialize and configure the RAN Context
      * the goal of get_options is to get command line options
      * this commit aims at making the implementation more consistent
      * move initialization of RC.nb_nr_CC to this function
      * cleanup redundant initializations of RC.nb_nr_macrlc_inst outside NRRCConfig
      * cleanup redundant initization of RC.nb_nr_macrlc_inst from getter function (get_node_type)
      * cleanup RC initialization in RCconfig_NR_L1
      * removed redundant log lines (print number of instances in NRRCConfig only)
      * do RC init after getting CL options and configuration
      * get_node_type shall access configuration only, not RC context
      * NRRCConfig shall be called only once: made it thread-safe
      b61de645
    • Guido Casati's avatar
      Removed global variable NB_RU · 14a379cb
      Guido Casati authored
      * this variable was set after RC.nb_RU, which is set in NRRCConfig
        therefore it was redundant since it can be easily replaced by
        the original
      14a379cb
    • Guido Casati's avatar
    • Guido Casati's avatar
      Simplified use of nb_nr_inst · f80b09ac
      Guido Casati authored
      * nb_nr_inst represents the number of gNB instances and the number of RAN contexts
      * it used also to count the number of RRC instances in the node
      * it is set from config file in NRRCConfig, therefore redundant checks after
        this function have been removed
      * redundant global variable NB_gNB_INST, set after nb_nr_inst, was removed
      f80b09ac
    • Guido Casati's avatar
      Removed unused wait_for_sync · eaeae880
      Guido Casati authored
      eaeae880