An error occurred fetching the project authors.
  1. 19 Oct, 2022 1 commit
  2. 26 Sep, 2022 1 commit
  3. 04 Aug, 2022 1 commit
  4. 14 Jun, 2022 1 commit
    • Melissa Elkadi's avatar
      Putting all CM code in one file · 630f8ac2
      Melissa Elkadi authored
      This commit includes reorganization of
      all of the SISO/MIMO channel modelling
      support being moved into a single CM
      file. Furthermore, it includes a bug
      fix for the number of MCS simulation
      tables (29 total, 0-28).
      630f8ac2
  5. 23 Feb, 2022 1 commit
  6. 28 Oct, 2021 2 commits
  7. 02 Sep, 2021 1 commit
  8. 26 Jun, 2021 1 commit
  9. 30 Apr, 2021 1 commit
  10. 03 Apr, 2021 1 commit
  11. 23 Mar, 2021 1 commit
  12. 13 Mar, 2021 2 commits
  13. 06 Mar, 2021 1 commit
  14. 28 Feb, 2021 1 commit
    • Michael Cook's avatar
      lte-ue.c: Allocate bigger arrays · 034d2cfe
      Michael Cook authored
      This code allocates memory from the heap:
      
      ```
      static void *UE_phy_stub_standalone_pnf_task(void *arg)
      {
      ...
        UL_INFO->crc_ind.crc_indication_body.crc_pdu_list =
        calloc(NB_UE_INST, sizeof(nfapi_crc_indication_pdu_t));
      ```
      
      I see NB_UE_INST==1.
      
      Then this code:
      
      ```
      void fill_crc_indication_UE_MAC(int Mod_id,
                                      int frame,
                                      int subframe,
                                      UL_IND_t *UL_INFO,
                                      uint8_t crc_flag,
                                      int index,
                                      uint16_t rnti,
                                      nfapi_ul_config_request_t
                                      *ul_config_req) {
      ...
        nfapi_crc_indication_pdu_t *pdu =
            &UL_INFO->crc_ind.crc_indication_body
                 .crc_pdu_list[UL_INFO->crc_ind.crc_indication_body.number_of_crcs];
      ```
      
      used .number_of_crcs to index into .crc_pdu_list without first
      checking if .number_of_crcs is in range.
      
      When run with multiple UEs, sometimes .number_of_crcs==1 and then
      -fsanitize=address complains.
      
      Change is to use NUMBER_OF_UE_MAX instead of NB_UE_INST.
      
      With this change, -fsanitize=address stopping complaining.
      034d2cfe
  15. 24 Feb, 2021 2 commits
  16. 19 Feb, 2021 1 commit
  17. 18 Feb, 2021 1 commit
  18. 15 Feb, 2021 1 commit
    • Melissa Elkadi's avatar
      Fixed fill_ul_mutex · 26e3f32b
      Melissa Elkadi authored
      Mutexes were not being initialized. In multiple
      places they were not being unlocked. In fill rach
      it was not being locked or unlocked.
      26e3f32b
  19. 09 Feb, 2021 1 commit
    • Melissa's avatar
      Updated non-blocking PDCP socket · 9fa09f53
      Melissa authored
      More accurately, we changed the do/while infinite
      loop to be an infinite for loop for the read command of
      the socket. The socket file descriptor choice is more clear now.
      9fa09f53
  20. 25 Jan, 2021 1 commit
  21. 23 Jan, 2021 1 commit
    • Melissa's avatar
      Fixed two bugs · 0f210073
      Melissa authored
      There was a variable that was being used that was undefined.
      Also fixed save_dci_pdu_for_crnti() function.
      0f210073
  22. 18 Jan, 2021 4 commits
  23. 15 Jan, 2021 2 commits
  24. 14 Jan, 2021 1 commit
  25. 12 Jan, 2021 1 commit
    • Melissa Elkadi's avatar
      NFAPI_MODE logic to include standalone mode · 42ae8207
      Melissa Elkadi authored
      Every if statement that includes a check for
      the NFAPI_MODE that did not check for the new
      PNF_STANDALONE_MODE now has been updated. Also
      changed the tx_req and dl_config_req logs
      when they are received at the OAI UE to be
      info logs instead of error logs.
      42ae8207
  26. 08 Jan, 2021 1 commit
    • Melissa Elkadi's avatar
      Cleanup before merge · a288e502
      Melissa Elkadi authored
      The clean up includes removing white space changes, adding logs,
      adding comments to make various changes more obvious, etc.
      a288e502
  27. 21 Nov, 2020 1 commit
    • Melissa's avatar
      dl_config_Req and tx_reqs are queued together · 4fe4f6cd
      Melissa authored
      Additionally, combined many of the individual
      dl_config_req and tx_req handle functions.
      Also removed some unused functions we added.
      Futhermore, removed our additions to the
      dl_config_req and tx_req memcpy functions.
      4fe4f6cd
  28. 20 Nov, 2020 1 commit
    • Melissa's avatar
      dl_config_Req and tx_reqs are queued together · 7aa9a95e
      Melissa authored
      Additionally, combined many of the individual
      dl_config_req and tx_req handle functions.
      Also removed some unused functions we added.
      Futhermore, removed our additions to the
      dl_config_req and tx_req memcpy functions.
      7aa9a95e
  29. 16 Nov, 2020 2 commits
  30. 13 Nov, 2020 1 commit
  31. 11 Nov, 2020 1 commit
  32. 06 Nov, 2020 1 commit