Skip to content

Commit

Permalink
fixed missing paging
Browse files Browse the repository at this point in the history
  • Loading branch information
hdtuanss committed May 8, 2023
1 parent 8fdcae7 commit b4158c4
Show file tree
Hide file tree
Showing 9 changed files with 2,350 additions and 1,693 deletions.
2 changes: 1 addition & 1 deletion src/include/MCSTracking.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class MCSTracking
bool en_debug = false;
uint16_t target_rnti = 0;
int max_size = DL_SNIFFER_MCSTRACKING_MAX_SIZE;
long double interval = 5.0; // 4 secs
long double interval = 5.0; // 5 secs
uint16_t rar_thresold = 3; // number of messages with DCI > 1A after rar response
std::mutex tracking_mutex;
// std::mutex config_mutex;
Expand Down
2 changes: 1 addition & 1 deletion src/include/Phy.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Phy {
void joinPending();
PhyCommon& getCommon();
DCIMetaFormats& getMetaFormats();
std::vector<std::shared_ptr<SubframeWorker> >& getWorkers();
std::vector<std::shared_ptr<SubframeWorker>>& getWorkers();
bool setCell(srsran_cell_t cell);
void setRNTI(uint16_t rnti);
void setChestCFOEstimateEnable(bool enable, uint32_t mask);
Expand Down
6 changes: 3 additions & 3 deletions src/include/SubframeWorker.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ class SubframeWorker {
bool updateMetaFormats;
bool collision_dw, collision_up;
DCIBlindSearchStats stats;
LTESniffer_pcap_writer *pcapwriter;
LTESniffer_pcap_writer *pcapwriter;
PDSCH_Decoder *pdschdecoder;
int mcs_tracking_mode;
MCSTracking *mcs_tracking;
int harq_mode;
HARQ *harq;
int harq_mode;
HARQ *harq;

//uplink
bool config = false;
Expand Down
Loading

0 comments on commit b4158c4

Please sign in to comment.