Skip to content
Snippets Groups Projects
  1. Mar 21, 2017
  2. Mar 20, 2017
  3. Mar 16, 2017
  4. Mar 15, 2017
  5. Mar 14, 2017
  6. Mar 13, 2017
  7. Mar 10, 2017
  8. Mar 08, 2017
  9. Mar 07, 2017
  10. Mar 03, 2017
  11. Mar 01, 2017
  12. Feb 22, 2017
  13. Feb 21, 2017
  14. Feb 20, 2017
  15. Feb 17, 2017
  16. Feb 16, 2017
  17. Feb 15, 2017
  18. Feb 14, 2017
    • Laurent's avatar
      remove debug traces · 23c75476
      Laurent authored
      23c75476
    • Cedric Roux's avatar
      cleanup lte-softmodem.c · f52a42ed
      Cedric Roux authored
      For whatever reason, lte-softmodem.c was totally messed up...
      
      We took the version from the branch develop and added
      abstraction_flag, which is needed in openair2/LAYER2/MAC/main.c
      (this is not clean, previous commit added a comment for this).
      This has to be cleaned at some point.
      f52a42ed
  19. Feb 13, 2017
    • Cedric Roux's avatar
      rewrite synchronisation in oaisim/channel simulation · b904ce79
      Cedric Roux authored
      The idea is as follows.
      
      oaisim waits for all tasks to be done for a TTI.
      To do so it waits for last_rx_timestamp == current_rx_timestamp,
      for all UEs and eNBs.
      
      When it's done, it increases current_rx_timestamp by samples_per_tti,
      to inform UEs and eNBs that a new TTI is ready.
      
      In the functions [UE|eNB]_trx_read, we wait for a new TTI to be ready,
      that is we wait for current_rx_timestamp != last_rx_timestamp.
      
      The UE has also to wait for processing threads to be done.
      In the eNB it's not necessary because the processing is all
      done in one thread, that is: read subframe, process this subframe,
      emit subframe+4, and then back to read subframe.
      
      The code is not clean. We should not use usleep but semaphores.
      
      Also, do_[DL|UL]_sig should not read from rxdata and write to txdata,
      but use internal buffers.
      
      The functions [UE|eNB]_trx_read should call do_[DL|UL]_sig and then
      copy from the internal buffers of the channel simulator into rxdata.
      
      The functions [UE|eNB]_trx_write should write data passed into the
      internal buffers of the channel simulator.
      b904ce79
Loading