|
|
@ -36,24 +36,24 @@
|
|
|
|
#include <signal.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "srslte/common/gen_mch_tables.h"
|
|
|
|
#include "srslte/common/gen_mch_tables.h"
|
|
|
|
#include "srslte/common/crash_handler.h"
|
|
|
|
#include "srslte/common/crash_handler.h"
|
|
|
|
#include <srslte/phy/common/phy_common.h>
|
|
|
|
|
|
|
|
#include "srslte/phy/io/filesink.h"
|
|
|
|
#include "srslte/phy/io/filesink.h"
|
|
|
|
#include "srslte/srslte.h"
|
|
|
|
#include "srslte/srslte.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define ENABLE_AGC_DEFAULT
|
|
|
|
#define ENABLE_AGC_DEFAULT
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
|
|
|
|
|
|
|
|
#include "srslte/phy/rf/rf.h"
|
|
|
|
#include "srslte/phy/rf/rf.h"
|
|
|
|
#include "srslte/phy/rf/rf_utils.h"
|
|
|
|
#include "srslte/phy/rf/rf_utils.h"
|
|
|
|
|
|
|
|
|
|
|
|
cell_search_cfg_t cell_detect_config = {
|
|
|
|
cell_search_cfg_t cell_detect_config = {.max_frames_pbch = SRSLTE_DEFAULT_MAX_FRAMES_PBCH,
|
|
|
|
SRSLTE_DEFAULT_MAX_FRAMES_PBCH,
|
|
|
|
.max_frames_pss = SRSLTE_DEFAULT_MAX_FRAMES_PSS,
|
|
|
|
SRSLTE_DEFAULT_MAX_FRAMES_PSS,
|
|
|
|
.nof_valid_pss_frames = SRSLTE_DEFAULT_NOF_VALID_PSS_FRAMES,
|
|
|
|
SRSLTE_DEFAULT_NOF_VALID_PSS_FRAMES,
|
|
|
|
.init_agc = 0,
|
|
|
|
0
|
|
|
|
.force_tdd = false};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
#warning Compiling pdsch_ue with no RF support
|
|
|
|
#warning Compiling pdsch_ue with no RF support
|
|
|
@ -61,17 +61,20 @@ cell_search_cfg_t cell_detect_config = {
|
|
|
|
|
|
|
|
|
|
|
|
//#define STDOUT_COMPACT
|
|
|
|
//#define STDOUT_COMPACT
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
|
|
|
|
|
|
|
|
#include "srsgui/srsgui.h"
|
|
|
|
#include "srsgui/srsgui.h"
|
|
|
|
|
|
|
|
|
|
|
|
void init_plots();
|
|
|
|
void init_plots();
|
|
|
|
|
|
|
|
|
|
|
|
pthread_t plot_thread;
|
|
|
|
pthread_t plot_thread;
|
|
|
|
sem_t plot_sem;
|
|
|
|
sem_t plot_sem;
|
|
|
|
uint32_t plot_sf_idx = 0;
|
|
|
|
uint32_t plot_sf_idx = 0;
|
|
|
|
bool plot_track = true;
|
|
|
|
bool plot_track = true;
|
|
|
|
bool enable_mbsfn_plot = false;
|
|
|
|
bool enable_mbsfn_plot = false;
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|
char* output_file_name;
|
|
|
|
char* output_file_name;
|
|
|
|
#define PRINT_CHANGE_SCHEDULIGN
|
|
|
|
//#define PRINT_CHANGE_SCHEDULING
|
|
|
|
|
|
|
|
|
|
|
|
//#define CORRECT_SAMPLE_OFFSET
|
|
|
|
//#define CORRECT_SAMPLE_OFFSET
|
|
|
|
|
|
|
|
|
|
|
@ -108,15 +111,20 @@ typedef struct {
|
|
|
|
int32_t mbsfn_area_id;
|
|
|
|
int32_t mbsfn_area_id;
|
|
|
|
uint8_t non_mbsfn_region;
|
|
|
|
uint8_t non_mbsfn_region;
|
|
|
|
uint8_t mbsfn_sf_mask;
|
|
|
|
uint8_t mbsfn_sf_mask;
|
|
|
|
|
|
|
|
int tdd_special_sf;
|
|
|
|
|
|
|
|
int sf_config;
|
|
|
|
int verbose;
|
|
|
|
int verbose;
|
|
|
|
}prog_args_t;
|
|
|
|
}prog_args_t;
|
|
|
|
|
|
|
|
|
|
|
|
void args_default(prog_args_t *args) {
|
|
|
|
void args_default(prog_args_t* args)
|
|
|
|
|
|
|
|
{
|
|
|
|
args->disable_plots = false;
|
|
|
|
args->disable_plots = false;
|
|
|
|
args->disable_plots_except_constellation = false;
|
|
|
|
args->disable_plots_except_constellation = false;
|
|
|
|
args->nof_subframes = -1;
|
|
|
|
args->nof_subframes = -1;
|
|
|
|
args->rnti = SRSLTE_SIRNTI;
|
|
|
|
args->rnti = SRSLTE_SIRNTI;
|
|
|
|
args->force_N_id_2 = -1; // Pick the best
|
|
|
|
args->force_N_id_2 = -1; // Pick the best
|
|
|
|
|
|
|
|
args->tdd_special_sf = -1;
|
|
|
|
|
|
|
|
args->sf_config = -1;
|
|
|
|
args->input_file_name = NULL;
|
|
|
|
args->input_file_name = NULL;
|
|
|
|
args->disable_cfo = false;
|
|
|
|
args->disable_cfo = false;
|
|
|
|
args->time_offset = 0;
|
|
|
|
args->time_offset = 0;
|
|
|
@ -148,7 +156,7 @@ void args_default(prog_args_t *args) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void usage(prog_args_t *args, char *prog) {
|
|
|
|
void usage(prog_args_t *args, char *prog) {
|
|
|
|
printf("Usage: %s [adgpPoOcildFRDnruMNv] -f rx_frequency (in Hz) | -i input_file\n", prog);
|
|
|
|
printf("Usage: %s [adgpPoOcildFRDnruMNvTG] -f rx_frequency (in Hz) | -i input_file\n", prog);
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
printf("\t-I RF dev [Default %s]\n", args->rf_dev);
|
|
|
|
printf("\t-I RF dev [Default %s]\n", args->rf_dev);
|
|
|
|
printf("\t-a RF args [Default %s]\n", args->rf_args);
|
|
|
|
printf("\t-a RF args [Default %s]\n", args->rf_args);
|
|
|
@ -173,12 +181,14 @@ void usage(prog_args_t *args, char *prog) {
|
|
|
|
printf("\t-F Enable RS-based CFO correction [Default %s]\n", !args->enable_cfo_ref ? "Disabled" : "Enabled");
|
|
|
|
printf("\t-F Enable RS-based CFO correction [Default %s]\n", !args->enable_cfo_ref ? "Disabled" : "Enabled");
|
|
|
|
printf("\t-R Average channel estimates on 1 ms [Default %s]\n", !args->average_subframe ? "Disabled" : "Enabled");
|
|
|
|
printf("\t-R Average channel estimates on 1 ms [Default %s]\n", !args->average_subframe ? "Disabled" : "Enabled");
|
|
|
|
printf("\t-t Add time offset [Default %d]\n", args->time_offset);
|
|
|
|
printf("\t-t Add time offset [Default %d]\n", args->time_offset);
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
printf("\t-T Set TDD special subframe configuration [Default %d]\n", args->tdd_special_sf);
|
|
|
|
|
|
|
|
printf("\t-G Set TDD uplink/downlink configuration [Default %d]\n", args->sf_config);
|
|
|
|
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
printf("\t-d disable plots [Default enabled]\n");
|
|
|
|
printf("\t-d disable plots [Default enabled]\n");
|
|
|
|
printf("\t-D disable all but constellation plots [Default enabled]\n");
|
|
|
|
printf("\t-D disable all but constellation plots [Default enabled]\n");
|
|
|
|
#else
|
|
|
|
#else /* ENABLE_GUI */
|
|
|
|
printf("\t plots are disabled. Graphics library not available\n");
|
|
|
|
printf("\t plots are disabled. Graphics library not available\n");
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|
printf("\t-y set the cpu affinity mask [Default %d] \n ", args->cpu_affinity);
|
|
|
|
printf("\t-y set the cpu affinity mask [Default %d] \n ", args->cpu_affinity);
|
|
|
|
printf("\t-n nof_subframes [Default %d]\n", args->nof_subframes);
|
|
|
|
printf("\t-n nof_subframes [Default %d]\n", args->nof_subframes);
|
|
|
|
printf("\t-s remote UDP port to send input signal (-1 does nothing with it) [Default %d]\n", args->net_port_signal);
|
|
|
|
printf("\t-s remote UDP port to send input signal (-1 does nothing with it) [Default %d]\n", args->net_port_signal);
|
|
|
@ -193,7 +203,8 @@ void usage(prog_args_t *args, char *prog) {
|
|
|
|
void parse_args(prog_args_t *args, int argc, char **argv) {
|
|
|
|
void parse_args(prog_args_t *args, int argc, char **argv) {
|
|
|
|
int opt;
|
|
|
|
int opt;
|
|
|
|
args_default(args);
|
|
|
|
args_default(args);
|
|
|
|
while ((opt = getopt(argc, argv, "adAogliIpPcOCtdDFRnvrfuUsSZyWMNB")) != -1) {
|
|
|
|
|
|
|
|
|
|
|
|
while ((opt = getopt(argc, argv, "adAogliIpPcOCtdDFRnvrfuUsSZyWMNBTG")) != -1) {
|
|
|
|
switch (opt) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'i':
|
|
|
|
case 'i':
|
|
|
|
args->input_file_name = argv[optind];
|
|
|
|
args->input_file_name = argv[optind];
|
|
|
@ -240,6 +251,12 @@ void parse_args(prog_args_t *args, int argc, char **argv) {
|
|
|
|
case 'f':
|
|
|
|
case 'f':
|
|
|
|
args->rf_freq = strtod(argv[optind], NULL);
|
|
|
|
args->rf_freq = strtod(argv[optind], NULL);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'T':
|
|
|
|
|
|
|
|
args->tdd_special_sf = atoi(argv[optind]);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'G':
|
|
|
|
|
|
|
|
args->sf_config = atoi(argv[optind]);
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
case 'n':
|
|
|
|
args->nof_subframes = atoi(argv[optind]);
|
|
|
|
args->nof_subframes = atoi(argv[optind]);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
@ -299,12 +316,13 @@ void parse_args(prog_args_t *args, int argc, char **argv) {
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************/
|
|
|
|
/**********************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/* TODO: Do something with the output data */
|
|
|
|
|
|
|
|
uint8_t *data[SRSLTE_MAX_CODEWORDS];
|
|
|
|
uint8_t *data[SRSLTE_MAX_CODEWORDS];
|
|
|
|
|
|
|
|
|
|
|
|
bool go_exit = false;
|
|
|
|
bool go_exit = false;
|
|
|
|
|
|
|
|
|
|
|
|
void sig_int_handler(int signo)
|
|
|
|
void sig_int_handler(int signo)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
printf("SIGINT received. Exiting...\n");
|
|
|
|
printf("SIGINT received. Exiting...\n");
|
|
|
@ -319,7 +337,9 @@ cf_t *sf_buffer[SRSLTE_MAX_PORTS] = {NULL};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
int srslte_rf_recv_wrapper(void *h, cf_t *data[SRSLTE_MAX_PORTS], uint32_t nsamples, srslte_timestamp_t *t) {
|
|
|
|
|
|
|
|
|
|
|
|
int srslte_rf_recv_wrapper(void* h, cf_t* data[SRSLTE_MAX_PORTS], uint32_t nsamples, srslte_timestamp_t* t)
|
|
|
|
|
|
|
|
{
|
|
|
|
DEBUG(" ---- Receive %d samples ---- \n", nsamples);
|
|
|
|
DEBUG(" ---- Receive %d samples ---- \n", nsamples);
|
|
|
|
void* ptr[SRSLTE_MAX_PORTS];
|
|
|
|
void* ptr[SRSLTE_MAX_PORTS];
|
|
|
|
for (int i = 0; i < SRSLTE_MAX_PORTS; i++) {
|
|
|
|
for (int i = 0; i < SRSLTE_MAX_PORTS; i++) {
|
|
|
@ -338,43 +358,44 @@ extern float mean_exec_time;
|
|
|
|
|
|
|
|
|
|
|
|
enum receiver_state { DECODE_MIB, DECODE_PDSCH } state;
|
|
|
|
enum receiver_state { DECODE_MIB, DECODE_PDSCH } state;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
srslte_cell_t cell;
|
|
|
|
srslte_ue_dl_t ue_dl;
|
|
|
|
srslte_ue_dl_t ue_dl;
|
|
|
|
|
|
|
|
srslte_ue_dl_cfg_t ue_dl_cfg;
|
|
|
|
|
|
|
|
srslte_dl_sf_cfg_t dl_sf;
|
|
|
|
|
|
|
|
srslte_pdsch_cfg_t pdsch_cfg;
|
|
|
|
srslte_ue_sync_t ue_sync;
|
|
|
|
srslte_ue_sync_t ue_sync;
|
|
|
|
prog_args_t prog_args;
|
|
|
|
prog_args_t prog_args;
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t sfn = 0; // system frame number
|
|
|
|
uint32_t pkt_errors = 0, pkt_total = 0, nof_detected = 0, pmch_pkt_errors = 0, pmch_pkt_total = 0, nof_trials = 0;
|
|
|
|
|
|
|
|
|
|
|
|
srslte_netsink_t net_sink, net_sink_signal;
|
|
|
|
srslte_netsink_t net_sink, net_sink_signal;
|
|
|
|
/* Useful macros for printing lines which will disappear */
|
|
|
|
/* Useful macros for printing lines which will disappear */
|
|
|
|
|
|
|
|
|
|
|
|
#define PRINT_LINE_INIT() int this_nof_lines = 0; static int prev_nof_lines = 0
|
|
|
|
#define PRINT_LINE_INIT() \
|
|
|
|
#define PRINT_LINE(_fmt, ...) printf("\033[K" _fmt "\n", ##__VA_ARGS__); this_nof_lines++
|
|
|
|
int this_nof_lines = 0; \
|
|
|
|
|
|
|
|
static int prev_nof_lines = 0
|
|
|
|
|
|
|
|
#define PRINT_LINE(_fmt, ...) \
|
|
|
|
|
|
|
|
printf("\033[K" _fmt "\n", ##__VA_ARGS__); \
|
|
|
|
|
|
|
|
this_nof_lines++
|
|
|
|
#define PRINT_LINE_RESET_CURSOR() printf("\033[%dA", this_nof_lines); prev_nof_lines = this_nof_lines
|
|
|
|
#define PRINT_LINE_RESET_CURSOR() printf("\033[%dA", this_nof_lines); prev_nof_lines = this_nof_lines
|
|
|
|
#define PRINT_LINE_ADVANCE_CURSOR() printf("\033[%dB", prev_nof_lines + 1)
|
|
|
|
#define PRINT_LINE_ADVANCE_CURSOR() printf("\033[%dB", prev_nof_lines + 1)
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
struct timeval t[3];
|
|
|
|
|
|
|
|
int ret;
|
|
|
|
int ret;
|
|
|
|
srslte_cell_t cell;
|
|
|
|
|
|
|
|
int64_t sf_cnt;
|
|
|
|
|
|
|
|
srslte_ue_mib_t ue_mib;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
srslte_rf_t rf;
|
|
|
|
srslte_rf_t rf;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
uint32_t nof_trials = 0;
|
|
|
|
|
|
|
|
uint8_t bch_payload[SRSLTE_BCH_PAYLOAD_LEN];
|
|
|
|
|
|
|
|
int sfn_offset;
|
|
|
|
|
|
|
|
float cfo = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
srslte_debug_handle_crash(argc, argv);
|
|
|
|
srslte_debug_handle_crash(argc, argv);
|
|
|
|
|
|
|
|
|
|
|
|
parse_args(&prog_args, argc, argv);
|
|
|
|
parse_args(&prog_args, argc, argv);
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
if (prog_args.mbsfn_area_id > -1) {
|
|
|
|
if (prog_args.mbsfn_area_id > -1) {
|
|
|
|
enable_mbsfn_plot = true;
|
|
|
|
enable_mbsfn_plot = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < SRSLTE_MAX_CODEWORDS; i++) {
|
|
|
|
for (int i = 0; i < SRSLTE_MAX_CODEWORDS; i++) {
|
|
|
|
data[i] = srslte_vec_malloc(sizeof(uint8_t) * 1500 * 8);
|
|
|
|
data[i] = srslte_vec_malloc(sizeof(uint8_t) * 1500 * 8);
|
|
|
@ -383,6 +404,7 @@ int main(int argc, char **argv) {
|
|
|
|
go_exit = true;
|
|
|
|
go_exit = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t mch_table[10];
|
|
|
|
uint8_t mch_table[10];
|
|
|
|
bzero(&mch_table[0], sizeof(uint8_t) * 10);
|
|
|
|
bzero(&mch_table[0], sizeof(uint8_t) * 10);
|
|
|
|
if (prog_args.mbsfn_area_id > -1) {
|
|
|
|
if (prog_args.mbsfn_area_id > -1) {
|
|
|
@ -400,7 +422,7 @@ int main(int argc, char **argv) {
|
|
|
|
CPU_SET((size_t)i, &cpuset);
|
|
|
|
CPU_SET((size_t)i, &cpuset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pthread_setaffinity_np(thread, sizeof(cpu_set_t), &cpuset)) {
|
|
|
|
if (pthread_setaffinity_np(thread, sizeof(cpu_set_t), &cpuset)) {
|
|
|
|
fprintf(stderr, "Error setting main thread affinity to %d \n", prog_args.cpu_affinity);
|
|
|
|
ERROR("Error setting main thread affinity to %d \n", prog_args.cpu_affinity);
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -408,20 +430,22 @@ int main(int argc, char **argv) {
|
|
|
|
|
|
|
|
|
|
|
|
if (prog_args.net_port > 0) {
|
|
|
|
if (prog_args.net_port > 0) {
|
|
|
|
if (srslte_netsink_init(&net_sink, prog_args.net_address, prog_args.net_port, SRSLTE_NETSINK_UDP)) {
|
|
|
|
if (srslte_netsink_init(&net_sink, prog_args.net_address, prog_args.net_port, SRSLTE_NETSINK_UDP)) {
|
|
|
|
fprintf(stderr, "Error initiating UDP socket to %s:%d\n", prog_args.net_address, prog_args.net_port);
|
|
|
|
ERROR("Error initiating UDP socket to %s:%d\n", prog_args.net_address, prog_args.net_port);
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
srslte_netsink_set_nonblocking(&net_sink);
|
|
|
|
srslte_netsink_set_nonblocking(&net_sink);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (prog_args.net_port_signal > 0) {
|
|
|
|
if (prog_args.net_port_signal > 0) {
|
|
|
|
if (srslte_netsink_init(&net_sink_signal, prog_args.net_address_signal,
|
|
|
|
if (srslte_netsink_init(
|
|
|
|
prog_args.net_port_signal, SRSLTE_NETSINK_UDP)) {
|
|
|
|
&net_sink_signal, prog_args.net_address_signal, prog_args.net_port_signal, SRSLTE_NETSINK_UDP)) {
|
|
|
|
fprintf(stderr, "Error initiating UDP socket to %s:%d\n", prog_args.net_address_signal, prog_args.net_port_signal);
|
|
|
|
ERROR("Error initiating UDP socket to %s:%d\n", prog_args.net_address_signal, prog_args.net_port_signal);
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
srslte_netsink_set_nonblocking(&net_sink_signal);
|
|
|
|
srslte_netsink_set_nonblocking(&net_sink_signal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
float search_cell_cfo = 0;
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
if (!prog_args.input_file_name) {
|
|
|
|
if (!prog_args.input_file_name) {
|
|
|
|
|
|
|
|
|
|
|
@ -436,7 +460,7 @@ int main(int argc, char **argv) {
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
printf("Starting AGC thread...\n");
|
|
|
|
printf("Starting AGC thread...\n");
|
|
|
|
if (srslte_rf_start_gain_thread(&rf, false)) {
|
|
|
|
if (srslte_rf_start_gain_thread(&rf, false)) {
|
|
|
|
fprintf(stderr, "Error opening rf\n");
|
|
|
|
ERROR("Error opening rf\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
srslte_rf_set_rx_gain(&rf, srslte_rf_get_rx_gain(&rf));
|
|
|
|
srslte_rf_set_rx_gain(&rf, srslte_rf_get_rx_gain(&rf));
|
|
|
@ -453,15 +477,15 @@ int main(int argc, char **argv) {
|
|
|
|
|
|
|
|
|
|
|
|
/* set receiver frequency */
|
|
|
|
/* set receiver frequency */
|
|
|
|
printf("Tunning receiver to %.3f MHz\n", (prog_args.rf_freq + prog_args.file_offset_freq) / 1000000);
|
|
|
|
printf("Tunning receiver to %.3f MHz\n", (prog_args.rf_freq + prog_args.file_offset_freq) / 1000000);
|
|
|
|
srslte_rf_set_rx_freq(&rf, prog_args.rf_freq + prog_args.file_offset_freq);
|
|
|
|
srslte_rf_set_rx_freq(&rf, prog_args.rf_nof_rx_ant, prog_args.rf_freq + prog_args.file_offset_freq);
|
|
|
|
srslte_rf_rx_wait_lo_locked(&rf);
|
|
|
|
srslte_rf_rx_wait_lo_locked(&rf);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t ntrial = 0;
|
|
|
|
uint32_t ntrial = 0;
|
|
|
|
do {
|
|
|
|
do {
|
|
|
|
ret = rf_search_and_decode_mib(&rf, prog_args.rf_nof_rx_ant, &cell_detect_config, prog_args.force_N_id_2, &cell, &cfo);
|
|
|
|
ret = rf_search_and_decode_mib(
|
|
|
|
|
|
|
|
&rf, prog_args.rf_nof_rx_ant, &cell_detect_config, prog_args.force_N_id_2, &cell, &search_cell_cfo);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "Error searching for cell\n");
|
|
|
|
ERROR("Error searching for cell\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
} else if (ret == 0 && !go_exit) {
|
|
|
|
} else if (ret == 0 && !go_exit) {
|
|
|
|
printf("Cell not found after %d trials. Trying again (Press Ctrl+C to exit)\n", ntrial++);
|
|
|
|
printf("Cell not found after %d trials. Trying again (Press Ctrl+C to exit)\n", ntrial++);
|
|
|
@ -484,11 +508,11 @@ int main(int argc, char **argv) {
|
|
|
|
printf("Setting sampling rate %.2f MHz\n", (float)srate / 1000000);
|
|
|
|
printf("Setting sampling rate %.2f MHz\n", (float)srate / 1000000);
|
|
|
|
float srate_rf = srslte_rf_set_rx_srate(&rf, (double) srate);
|
|
|
|
float srate_rf = srslte_rf_set_rx_srate(&rf, (double) srate);
|
|
|
|
if (srate_rf != srate) {
|
|
|
|
if (srate_rf != srate) {
|
|
|
|
fprintf(stderr, "Could not set sampling rate\n");
|
|
|
|
ERROR("Could not set sampling rate\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid number of PRB %d\n", cell.nof_prb);
|
|
|
|
ERROR("Invalid number of PRB %d\n", cell.nof_prb);
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -506,15 +530,19 @@ int main(int argc, char **argv) {
|
|
|
|
cell.nof_ports = prog_args.file_nof_ports;
|
|
|
|
cell.nof_ports = prog_args.file_nof_ports;
|
|
|
|
cell.nof_prb = prog_args.file_nof_prb;
|
|
|
|
cell.nof_prb = prog_args.file_nof_prb;
|
|
|
|
|
|
|
|
|
|
|
|
if (srslte_ue_sync_init_file_multi(&ue_sync, prog_args.file_nof_prb,
|
|
|
|
if (srslte_ue_sync_init_file_multi(&ue_sync,
|
|
|
|
prog_args.input_file_name, prog_args.file_offset_time, prog_args.file_offset_freq, prog_args.rf_nof_rx_ant)) {
|
|
|
|
prog_args.file_nof_prb,
|
|
|
|
fprintf(stderr, "Error initiating ue_sync\n");
|
|
|
|
prog_args.input_file_name,
|
|
|
|
|
|
|
|
prog_args.file_offset_time,
|
|
|
|
|
|
|
|
prog_args.file_offset_freq,
|
|
|
|
|
|
|
|
prog_args.rf_nof_rx_ant)) {
|
|
|
|
|
|
|
|
ERROR("Error initiating ue_sync\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
int decimate = 1;
|
|
|
|
int decimate = 0;
|
|
|
|
if (prog_args.decimate) {
|
|
|
|
if (prog_args.decimate) {
|
|
|
|
if (prog_args.decimate > 4 || prog_args.decimate < 0) {
|
|
|
|
if (prog_args.decimate > 4 || prog_args.decimate < 0) {
|
|
|
|
printf("Invalid decimation factor, setting to 1 \n");
|
|
|
|
printf("Invalid decimation factor, setting to 1 \n");
|
|
|
@ -522,15 +550,18 @@ int main(int argc, char **argv) {
|
|
|
|
decimate = prog_args.decimate;
|
|
|
|
decimate = prog_args.decimate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (srslte_ue_sync_init_multi_decim(&ue_sync,
|
|
|
|
if (srslte_ue_sync_init_multi_decim(&ue_sync, cell.nof_prb, cell.id == 1000, srslte_rf_recv_wrapper,
|
|
|
|
cell.nof_prb,
|
|
|
|
prog_args.rf_nof_rx_ant, (void*)&rf, decimate)) {
|
|
|
|
cell.id == 1000,
|
|
|
|
fprintf(stderr, "Error initiating ue_sync\n");
|
|
|
|
srslte_rf_recv_wrapper,
|
|
|
|
|
|
|
|
prog_args.rf_nof_rx_ant,
|
|
|
|
|
|
|
|
(void*)&rf,
|
|
|
|
|
|
|
|
decimate)) {
|
|
|
|
|
|
|
|
ERROR("Error initiating ue_sync\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (srslte_ue_sync_set_cell(&ue_sync, cell)) {
|
|
|
|
if (srslte_ue_sync_set_cell(&ue_sync, cell)) {
|
|
|
|
fprintf(stderr, "Error initiating ue_sync\n");
|
|
|
|
ERROR("Error initiating ue_sync\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
@ -539,33 +570,61 @@ int main(int argc, char **argv) {
|
|
|
|
for (int i = 0; i < prog_args.rf_nof_rx_ant; i++) {
|
|
|
|
for (int i = 0; i < prog_args.rf_nof_rx_ant; i++) {
|
|
|
|
sf_buffer[i] = srslte_vec_malloc(3 * sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
|
|
|
sf_buffer[i] = srslte_vec_malloc(3 * sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
srslte_ue_mib_t ue_mib;
|
|
|
|
if (srslte_ue_mib_init(&ue_mib, sf_buffer, cell.nof_prb)) {
|
|
|
|
if (srslte_ue_mib_init(&ue_mib, sf_buffer, cell.nof_prb)) {
|
|
|
|
fprintf(stderr, "Error initaiting UE MIB decoder\n");
|
|
|
|
ERROR("Error initaiting UE MIB decoder\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (srslte_ue_mib_set_cell(&ue_mib, cell)) {
|
|
|
|
if (srslte_ue_mib_set_cell(&ue_mib, cell)) {
|
|
|
|
fprintf(stderr, "Error initaiting UE MIB decoder\n");
|
|
|
|
ERROR("Error initaiting UE MIB decoder\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (srslte_ue_dl_init(&ue_dl, sf_buffer, cell.nof_prb, prog_args.rf_nof_rx_ant)) {
|
|
|
|
if (srslte_ue_dl_init(&ue_dl, sf_buffer, cell.nof_prb, prog_args.rf_nof_rx_ant)) {
|
|
|
|
fprintf(stderr, "Error initiating UE downlink processing module\n");
|
|
|
|
ERROR("Error initiating UE downlink processing module\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (srslte_ue_dl_set_cell(&ue_dl, cell)) {
|
|
|
|
if (srslte_ue_dl_set_cell(&ue_dl, cell)) {
|
|
|
|
fprintf(stderr, "Error initiating UE downlink processing module\n");
|
|
|
|
ERROR("Error initiating UE downlink processing module\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Disable CP based CFO estimation during find
|
|
|
|
// Disable CP based CFO estimation during find
|
|
|
|
ue_sync.cfo_current_value = cfo/15000;
|
|
|
|
ue_sync.cfo_current_value = search_cell_cfo / 15000;
|
|
|
|
ue_sync.cfo_is_copied = true;
|
|
|
|
ue_sync.cfo_is_copied = true;
|
|
|
|
ue_sync.cfo_correct_enable_find = true;
|
|
|
|
ue_sync.cfo_correct_enable_find = true;
|
|
|
|
srslte_sync_set_cfo_cp_enable(&ue_sync.sfind, false, 0);
|
|
|
|
srslte_sync_set_cfo_cp_enable(&ue_sync.sfind, false, 0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ZERO_OBJECT(ue_dl_cfg);
|
|
|
|
|
|
|
|
ZERO_OBJECT(dl_sf);
|
|
|
|
|
|
|
|
ZERO_OBJECT(pdsch_cfg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (cell.frame_type == SRSLTE_TDD && prog_args.tdd_special_sf >= 0 && prog_args.sf_config >= 0) {
|
|
|
|
|
|
|
|
dl_sf.tdd_config.ss_config = prog_args.tdd_special_sf;
|
|
|
|
|
|
|
|
dl_sf.tdd_config.sf_config = prog_args.sf_config;
|
|
|
|
|
|
|
|
dl_sf.tdd_config.configured = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
srslte_chest_dl_cfg_t chest_pdsch_cfg;
|
|
|
|
|
|
|
|
chest_pdsch_cfg.cfo_estimate_enable = prog_args.enable_cfo_ref;
|
|
|
|
|
|
|
|
chest_pdsch_cfg.cfo_estimate_sf_mask = 1023;
|
|
|
|
|
|
|
|
chest_pdsch_cfg.interpolate_subframe = !prog_args.average_subframe;
|
|
|
|
|
|
|
|
|
|
|
|
srslte_chest_dl_cfo_estimate_enable(&ue_dl.chest, prog_args.enable_cfo_ref, 1023);
|
|
|
|
// Special configuration for MBSFN channel estimation
|
|
|
|
srslte_chest_dl_average_subframe(&ue_dl.chest, prog_args.average_subframe);
|
|
|
|
srslte_chest_dl_cfg_t chest_mbsfn_cfg;
|
|
|
|
|
|
|
|
chest_mbsfn_cfg.filter_type = SRSLTE_CHEST_FILTER_TRIANGLE;
|
|
|
|
|
|
|
|
chest_mbsfn_cfg.filter_coef[0] = 0.1;
|
|
|
|
|
|
|
|
chest_mbsfn_cfg.interpolate_subframe = true;
|
|
|
|
|
|
|
|
chest_mbsfn_cfg.noise_alg = SRSLTE_NOISE_ALG_PSS;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Allocate softbuffer buffers
|
|
|
|
|
|
|
|
srslte_softbuffer_rx_t rx_softbuffers[SRSLTE_MAX_CODEWORDS];
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < SRSLTE_MAX_CODEWORDS; i++) {
|
|
|
|
|
|
|
|
pdsch_cfg.softbuffers.rx[i] = &rx_softbuffers[i];
|
|
|
|
|
|
|
|
srslte_softbuffer_rx_init(pdsch_cfg.softbuffers.rx[i], cell.nof_prb);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pdsch_cfg.rnti = prog_args.rnti;
|
|
|
|
|
|
|
|
|
|
|
|
/* Configure downlink receiver for the SI-RNTI since will be the only one we'll use */
|
|
|
|
/* Configure downlink receiver for the SI-RNTI since will be the only one we'll use */
|
|
|
|
srslte_ue_dl_set_rnti(&ue_dl, prog_args.rnti);
|
|
|
|
srslte_ue_dl_set_rnti(&ue_dl, prog_args.rnti);
|
|
|
@ -575,16 +634,13 @@ int main(int argc, char **argv) {
|
|
|
|
srslte_ue_dl_set_mbsfn_area_id(&ue_dl, prog_args.mbsfn_area_id);
|
|
|
|
srslte_ue_dl_set_mbsfn_area_id(&ue_dl, prog_args.mbsfn_area_id);
|
|
|
|
srslte_ue_dl_set_non_mbsfn_region(&ue_dl, prog_args.non_mbsfn_region);
|
|
|
|
srslte_ue_dl_set_non_mbsfn_region(&ue_dl, prog_args.non_mbsfn_region);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Initialize subframe counter */
|
|
|
|
|
|
|
|
sf_cnt = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
init_plots(cell);
|
|
|
|
init_plots(cell);
|
|
|
|
sleep(1);
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
if (!prog_args.input_file_name) {
|
|
|
|
if (!prog_args.input_file_name) {
|
|
|
@ -592,17 +648,6 @@ int main(int argc, char **argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Variables for measurements
|
|
|
|
|
|
|
|
uint32_t nframes=0;
|
|
|
|
|
|
|
|
uint8_t ri = 0, pmi = 0;
|
|
|
|
|
|
|
|
float rsrp0=0.0, rsrp1=0.0, rsrq=0.0, noise=0.0, enodebrate = 0.0, uerate = 0.0, procrate = 0.0,
|
|
|
|
|
|
|
|
sinr[SRSLTE_MAX_LAYERS][SRSLTE_MAX_CODEBOOKS], cn = 0.0;
|
|
|
|
|
|
|
|
bool decode_pdsch = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < SRSLTE_MAX_LAYERS; i++) {
|
|
|
|
|
|
|
|
bzero(sinr[i], sizeof(float)*SRSLTE_MAX_CODEBOOKS);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
#ifndef DISABLE_RF
|
|
|
|
if (prog_args.rf_gain < 0 && !prog_args.input_file_name) {
|
|
|
|
if (prog_args.rf_gain < 0 && !prog_args.input_file_name) {
|
|
|
|
srslte_rf_info_t *rf_info = srslte_rf_get_info(&rf);
|
|
|
|
srslte_rf_info_t *rf_info = srslte_rf_get_info(&rf);
|
|
|
@ -613,9 +658,9 @@ int main(int argc, char **argv) {
|
|
|
|
cell_detect_config.init_agc);
|
|
|
|
cell_detect_config.init_agc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef PRINT_CHANGE_SCHEDULIGN
|
|
|
|
#ifdef PRINT_CHANGE_SCHEDULING
|
|
|
|
srslte_ra_dl_dci_t old_dl_dci;
|
|
|
|
srslte_ra_dl_grant_t old_dl_dci;
|
|
|
|
bzero(&old_dl_dci, sizeof(srslte_ra_dl_dci_t));
|
|
|
|
bzero(&old_dl_dci, sizeof(srslte_ra_dl_grant_t));
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
ue_sync.cfo_correct_enable_track = !prog_args.disable_cfo;
|
|
|
|
ue_sync.cfo_correct_enable_track = !prog_args.disable_cfo;
|
|
|
@ -623,9 +668,22 @@ int main(int argc, char **argv) {
|
|
|
|
srslte_pbch_decode_reset(&ue_mib.pbch);
|
|
|
|
srslte_pbch_decode_reset(&ue_mib.pbch);
|
|
|
|
|
|
|
|
|
|
|
|
INFO("\nEntering main loop...\n\n");
|
|
|
|
INFO("\nEntering main loop...\n\n");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Variables for measurements
|
|
|
|
|
|
|
|
uint32_t nframes = 0;
|
|
|
|
|
|
|
|
float rsrp0 = 0.0, rsrp1 = 0.0, rsrq = 0.0, snr = 0.0, enodebrate = 0.0, uerate = 0.0, procrate = 0.0,
|
|
|
|
|
|
|
|
sinr[SRSLTE_MAX_LAYERS][SRSLTE_MAX_CODEBOOKS];
|
|
|
|
|
|
|
|
bool decode_pdsch = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < SRSLTE_MAX_LAYERS; i++) {
|
|
|
|
|
|
|
|
bzero(sinr[i], sizeof(float) * SRSLTE_MAX_CODEBOOKS);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Main loop */
|
|
|
|
/* Main loop */
|
|
|
|
|
|
|
|
uint64_t sf_cnt = 0;
|
|
|
|
|
|
|
|
uint32_t sfn = 0;
|
|
|
|
|
|
|
|
uint32_t last_decoded_tm = 0;
|
|
|
|
while (!go_exit && (sf_cnt < prog_args.nof_subframes || prog_args.nof_subframes == -1)) {
|
|
|
|
while (!go_exit && (sf_cnt < prog_args.nof_subframes || prog_args.nof_subframes == -1)) {
|
|
|
|
bool acks [SRSLTE_MAX_CODEWORDS] = {false};
|
|
|
|
|
|
|
|
char input[128];
|
|
|
|
char input[128];
|
|
|
|
PRINT_LINE_INIT();
|
|
|
|
PRINT_LINE_INIT();
|
|
|
|
|
|
|
|
|
|
|
@ -644,34 +702,44 @@ int main(int argc, char **argv) {
|
|
|
|
/* If a new line is detected set verbose level to Debug */
|
|
|
|
/* If a new line is detected set verbose level to Debug */
|
|
|
|
if (fgets(input, sizeof(input), stdin)) {
|
|
|
|
if (fgets(input, sizeof(input), stdin)) {
|
|
|
|
srslte_verbose = SRSLTE_VERBOSE_DEBUG;
|
|
|
|
srslte_verbose = SRSLTE_VERBOSE_DEBUG;
|
|
|
|
ue_dl.pkt_errors = 0;
|
|
|
|
pkt_errors = 0;
|
|
|
|
ue_dl.pkts_total = 0;
|
|
|
|
pkt_total = 0;
|
|
|
|
ue_dl.nof_detected = 0;
|
|
|
|
nof_detected = 0;
|
|
|
|
nof_trials = 0;
|
|
|
|
nof_trials = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ret = srslte_ue_sync_zerocopy_multi(&ue_sync, sf_buffer);
|
|
|
|
cf_t* buffers[SRSLTE_MAX_PORTS] = {};
|
|
|
|
|
|
|
|
for (int p = 0; p < SRSLTE_MAX_PORTS; p++) {
|
|
|
|
|
|
|
|
buffers[p] = sf_buffer[p];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = srslte_ue_sync_zerocopy(&ue_sync, buffers);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "Error calling srslte_ue_sync_work()\n");
|
|
|
|
ERROR("Error calling srslte_ue_sync_work()\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CORRECT_SAMPLE_OFFSET
|
|
|
|
#ifdef CORRECT_SAMPLE_OFFSET
|
|
|
|
float sample_offset = (float) srslte_ue_sync_get_last_sample_offset(&ue_sync)+srslte_ue_sync_get_sfo(&ue_sync)/1000;
|
|
|
|
float sample_offset =
|
|
|
|
|
|
|
|
(float)srslte_ue_sync_get_last_sample_offset(&ue_sync) + srslte_ue_sync_get_sfo(&ue_sync) / 1000;
|
|
|
|
srslte_ue_dl_set_sample_offset(&ue_dl, sample_offset);
|
|
|
|
srslte_ue_dl_set_sample_offset(&ue_dl, sample_offset);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* srslte_ue_sync_get_buffer returns 1 if successfully read 1 aligned subframe */
|
|
|
|
/* srslte_ue_sync_get_buffer returns 1 if successfully read 1 aligned subframe */
|
|
|
|
if (ret == 1) {
|
|
|
|
if (ret == 1) {
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t sfidx = srslte_ue_sync_get_sfidx(&ue_sync);
|
|
|
|
bool acks[SRSLTE_MAX_CODEWORDS] = {false};
|
|
|
|
|
|
|
|
struct timeval t[3];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t sf_idx = srslte_ue_sync_get_sfidx(&ue_sync);
|
|
|
|
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
switch (state) {
|
|
|
|
case DECODE_MIB:
|
|
|
|
case DECODE_MIB:
|
|
|
|
if (sfidx == 0) {
|
|
|
|
if (sf_idx == 0) {
|
|
|
|
|
|
|
|
uint8_t bch_payload[SRSLTE_BCH_PAYLOAD_LEN];
|
|
|
|
|
|
|
|
int sfn_offset;
|
|
|
|
n = srslte_ue_mib_decode(&ue_mib, bch_payload, NULL, &sfn_offset);
|
|
|
|
n = srslte_ue_mib_decode(&ue_mib, bch_payload, NULL, &sfn_offset);
|
|
|
|
if (n < 0) {
|
|
|
|
if (n < 0) {
|
|
|
|
fprintf(stderr, "Error decoding UE MIB\n");
|
|
|
|
ERROR("Error decoding UE MIB\n");
|
|
|
|
exit(-1);
|
|
|
|
exit(-1);
|
|
|
|
} else if (n == SRSLTE_UE_MIB_FOUND) {
|
|
|
|
} else if (n == SRSLTE_UE_MIB_FOUND) {
|
|
|
|
srslte_pbch_mib_unpack(bch_payload, &cell, &sfn);
|
|
|
|
srslte_pbch_mib_unpack(bch_payload, &cell, &sfn);
|
|
|
@ -683,114 +751,127 @@ int main(int argc, char **argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case DECODE_PDSCH:
|
|
|
|
case DECODE_PDSCH:
|
|
|
|
|
|
|
|
|
|
|
|
if (prog_args.rnti != SRSLTE_SIRNTI) {
|
|
|
|
if (prog_args.rnti != SRSLTE_SIRNTI) {
|
|
|
|
decode_pdsch = true;
|
|
|
|
decode_pdsch = true;
|
|
|
|
|
|
|
|
if (srslte_sfidx_tdd_type(dl_sf.tdd_config, sf_idx) == SRSLTE_TDD_SF_U) {
|
|
|
|
|
|
|
|
decode_pdsch = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
/* We are looking for SIB1 Blocks, search only in appropiate places */
|
|
|
|
/* We are looking for SIB1 Blocks, search only in appropiate places */
|
|
|
|
if ((sfidx == 5 && (sfn%2)==0) ||mch_table[sfidx] == 1) {
|
|
|
|
if ((sf_idx == 5 && (sfn % 2) == 0) || mch_table[sf_idx] == 1) {
|
|
|
|
decode_pdsch = true;
|
|
|
|
decode_pdsch = true;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
decode_pdsch = false;
|
|
|
|
decode_pdsch = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t tti = sfn * 10 + sf_idx;
|
|
|
|
|
|
|
|
|
|
|
|
gettimeofday(&t[1], NULL);
|
|
|
|
gettimeofday(&t[1], NULL);
|
|
|
|
if (decode_pdsch) {
|
|
|
|
if (decode_pdsch) {
|
|
|
|
if(mch_table[sfidx] == 0 || prog_args.mbsfn_area_id < 0){ // Not an MBSFN subframe
|
|
|
|
srslte_sf_t sf_type;
|
|
|
|
if (cell.nof_ports == 1) {
|
|
|
|
if (mch_table[sf_idx] == 0 || prog_args.mbsfn_area_id < 0) { // Not an MBSFN subframe
|
|
|
|
/* Transmission mode 1 */
|
|
|
|
sf_type = SRSLTE_SF_NORM;
|
|
|
|
n = srslte_ue_dl_decode(&ue_dl, data, 0, sfn*10+srslte_ue_sync_get_sfidx(&ue_sync), acks);
|
|
|
|
|
|
|
|
|
|
|
|
// Set PDSCH channel estimation
|
|
|
|
|
|
|
|
ue_dl_cfg.chest_cfg = chest_pdsch_cfg;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
/* Transmission mode 2 */
|
|
|
|
sf_type = SRSLTE_SF_MBSFN;
|
|
|
|
n = srslte_ue_dl_decode(&ue_dl, data, 1, sfn * 10 + srslte_ue_sync_get_sfidx(&ue_sync),
|
|
|
|
|
|
|
|
acks);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (n < 1) {
|
|
|
|
// Set MBSFN channel estimation
|
|
|
|
/* Transmission mode 3 */
|
|
|
|
ue_dl_cfg.chest_cfg = chest_mbsfn_cfg;
|
|
|
|
n = srslte_ue_dl_decode(&ue_dl, data, 2, sfn * 10 + srslte_ue_sync_get_sfidx(&ue_sync),
|
|
|
|
|
|
|
|
acks);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (n < 1) {
|
|
|
|
n = 0;
|
|
|
|
/* Transmission mode 4 */
|
|
|
|
for (uint32_t tm = 0; tm < 4 && !n; tm++) {
|
|
|
|
n = srslte_ue_dl_decode(&ue_dl, data, 3, sfn * 10 + srslte_ue_sync_get_sfidx(&ue_sync),
|
|
|
|
dl_sf.tti = tti;
|
|
|
|
acks);
|
|
|
|
dl_sf.sf_type = sf_type;
|
|
|
|
|
|
|
|
ue_dl_cfg.cfg.tm = (srslte_tm_t)tm;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((ue_dl_cfg.cfg.tm == SRSLTE_TM1 && cell.nof_ports == 1) ||
|
|
|
|
|
|
|
|
(ue_dl_cfg.cfg.tm > SRSLTE_TM1 && cell.nof_ports > 1)) {
|
|
|
|
|
|
|
|
n = srslte_ue_dl_find_and_decode(&ue_dl, &dl_sf, &ue_dl_cfg, &pdsch_cfg, data, acks);
|
|
|
|
|
|
|
|
if (n > 0) {
|
|
|
|
|
|
|
|
nof_detected++;
|
|
|
|
|
|
|
|
last_decoded_tm = tm;
|
|
|
|
|
|
|
|
for (uint32_t tb = 0; tb < SRSLTE_MAX_CODEWORDS; tb++) {
|
|
|
|
|
|
|
|
if (pdsch_cfg.grant.tb[tb].enabled) {
|
|
|
|
|
|
|
|
if (!acks[tb]) {
|
|
|
|
|
|
|
|
if (sf_type == SRSLTE_SF_NORM) {
|
|
|
|
|
|
|
|
pkt_errors++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
pmch_pkt_errors++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sf_type == SRSLTE_SF_NORM) {
|
|
|
|
|
|
|
|
pkt_total++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
pmch_pkt_total++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Feed-back ue_sync with chest_dl CFO estimation
|
|
|
|
|
|
|
|
if (sfidx == 5 && prog_args.enable_cfo_ref) {
|
|
|
|
|
|
|
|
srslte_ue_sync_set_cfo_ref(&ue_sync, srslte_chest_dl_get_cfo(&ue_dl.chest));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}else{ // MBSFN subframe
|
|
|
|
|
|
|
|
n = srslte_ue_dl_decode_mbsfn(&ue_dl,
|
|
|
|
|
|
|
|
data[0],
|
|
|
|
|
|
|
|
sfn*10+srslte_ue_sync_get_sfidx(&ue_sync));
|
|
|
|
|
|
|
|
if(n>0){
|
|
|
|
|
|
|
|
if(output_file_name){
|
|
|
|
|
|
|
|
//srslte_filesink_init(&sink, output_file_name, SRSLTE_BYTE_BIN);
|
|
|
|
|
|
|
|
// srslte_filesink_write(&sink, data, n);
|
|
|
|
|
|
|
|
//srslte_filesink_free(&sink);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
INFO("mbsfn PDU size is %d\n", n);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Feed-back ue_sync with chest_dl CFO estimation
|
|
|
|
|
|
|
|
if (sf_idx == 5 && prog_args.enable_cfo_ref) {
|
|
|
|
|
|
|
|
srslte_ue_sync_set_cfo_ref(&ue_sync, ue_dl.chest_res.cfo);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gettimeofday(&t[2], NULL);
|
|
|
|
gettimeofday(&t[2], NULL);
|
|
|
|
get_time_interval(t);
|
|
|
|
get_time_interval(t);
|
|
|
|
if (n < 0) {
|
|
|
|
|
|
|
|
// fprintf(stderr, "Error decoding UE DL\n");fflush(stdout);
|
|
|
|
if (n > 0) {
|
|
|
|
} else if (n > 0) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Send data if socket active */
|
|
|
|
/* Send data if socket active */
|
|
|
|
if (prog_args.net_port > 0) {
|
|
|
|
if (prog_args.net_port > 0) {
|
|
|
|
if(sfidx == 1) {
|
|
|
|
if (sf_idx == 1) {
|
|
|
|
srslte_netsink_write(&net_sink, data[0], 1 + (n - 1) / 8);
|
|
|
|
srslte_netsink_write(&net_sink, data[0], 1 + (n - 1) / 8);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// FIXME: UDP Data transmission does not work
|
|
|
|
// FIXME: UDP Data transmission does not work
|
|
|
|
for (uint32_t tb = 0; tb < SRSLTE_MAX_CODEWORDS; tb++) {
|
|
|
|
for (uint32_t tb = 0; tb < SRSLTE_MAX_CODEWORDS; tb++) {
|
|
|
|
if (ue_dl.pdsch_cfg.grant.tb_en[tb]) {
|
|
|
|
if (pdsch_cfg.grant.tb[tb].enabled) {
|
|
|
|
srslte_netsink_write(&net_sink, data[tb], 1 + (ue_dl.pdsch_cfg.grant.mcs[tb].tbs - 1) / 8);
|
|
|
|
srslte_netsink_write(&net_sink, data[tb], 1 + (pdsch_cfg.grant.tb[tb].tbs - 1) / 8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef PRINT_CHANGE_SCHEDULIGN
|
|
|
|
#ifdef PRINT_CHANGE_SCHEDULING
|
|
|
|
if (ue_dl.dl_dci.mcs_idx != old_dl_dci.mcs_idx ||
|
|
|
|
if (pdsch_cfg.dci.cw[0].mcs_idx != old_dl_dci.cw[0].mcs_idx ||
|
|
|
|
memcmp(&ue_dl.dl_dci.type0_alloc, &old_dl_dci.type0_alloc, sizeof(srslte_ra_type0_t)) ||
|
|
|
|
memcmp(&pdsch_cfg.dci.type0_alloc, &old_dl_dci.type0_alloc, sizeof(srslte_ra_type0_t)) ||
|
|
|
|
memcmp(&ue_dl.dl_dci.type1_alloc, &old_dl_dci.type1_alloc, sizeof(srslte_ra_type1_t)) ||
|
|
|
|
memcmp(&pdsch_cfg.dci.type1_alloc, &old_dl_dci.type1_alloc, sizeof(srslte_ra_type1_t)) ||
|
|
|
|
memcmp(&ue_dl.dl_dci.type2_alloc, &old_dl_dci.type2_alloc, sizeof(srslte_ra_type2_t)))
|
|
|
|
memcmp(&pdsch_cfg.dci.type2_alloc, &old_dl_dci.type2_alloc, sizeof(srslte_ra_type2_t))) {
|
|
|
|
{
|
|
|
|
old_dl_dci = pdsch_cfg.dci;
|
|
|
|
memcpy(&old_dl_dci, &ue_dl.dl_dci, sizeof(srslte_ra_dl_dci_t));
|
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stdout);
|
|
|
|
printf("Format: %s\n", srslte_dci_format_string(ue_dl.dci_format));
|
|
|
|
printf("DCI %s\n", srslte_dci_format_string(pdsch_cfg.dci.dci_format));
|
|
|
|
srslte_ra_pdsch_fprint(stdout, &old_dl_dci, cell.nof_prb);
|
|
|
|
srslte_ra_pdsch_fprint(stdout, &old_dl_dci, cell.nof_prb);
|
|
|
|
srslte_ra_dl_grant_fprint(stdout, &ue_dl.pdsch_cfg.grant);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nof_trials++;
|
|
|
|
nof_trials++;
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t nof_bits = ((acks[0]?ue_dl.pdsch_cfg.grant.mcs[0].tbs:0) + (acks[1]?ue_dl.pdsch_cfg.grant.mcs[1].tbs:0));
|
|
|
|
uint32_t enb_bits = ((pdsch_cfg.grant.tb[0].enabled ? pdsch_cfg.grant.tb[0].tbs : 0) +
|
|
|
|
rsrq = SRSLTE_VEC_EMA(srslte_chest_dl_get_rsrq(&ue_dl.chest), rsrq, 0.1f);
|
|
|
|
(pdsch_cfg.grant.tb[1].enabled ? pdsch_cfg.grant.tb[1].tbs : 0));
|
|
|
|
rsrp0 = SRSLTE_VEC_EMA(srslte_chest_dl_get_rsrp_port(&ue_dl.chest, 0), rsrp0, 0.05f);
|
|
|
|
uint32_t ue_bits = ((acks[0] ? pdsch_cfg.grant.tb[0].tbs : 0) + (acks[1] ? pdsch_cfg.grant.tb[1].tbs : 0));
|
|
|
|
rsrp1 = SRSLTE_VEC_EMA(srslte_chest_dl_get_rsrp_port(&ue_dl.chest, 1), rsrp1, 0.05f);
|
|
|
|
rsrq = SRSLTE_VEC_EMA(ue_dl.chest_res.rsrp_dbm, rsrq, 0.1f);
|
|
|
|
noise = SRSLTE_VEC_EMA(srslte_chest_dl_get_noise_estimate(&ue_dl.chest), noise, 0.05f);
|
|
|
|
rsrp0 = SRSLTE_VEC_EMA(ue_dl.chest_res.rsrp_port_dbm[0], rsrp0, 0.05f);
|
|
|
|
enodebrate = SRSLTE_VEC_EMA(nof_bits/1000.0f, enodebrate, 0.05f);
|
|
|
|
rsrp1 = SRSLTE_VEC_EMA(ue_dl.chest_res.rsrp_port_dbm[1], rsrp1, 0.05f);
|
|
|
|
uerate = SRSLTE_VEC_EMA(nof_bits/1000.0f, uerate, 0.001f);
|
|
|
|
snr = SRSLTE_VEC_EMA(ue_dl.chest_res.snr_db, snr, 0.05f);
|
|
|
|
|
|
|
|
enodebrate = SRSLTE_VEC_EMA(enb_bits / 1000.0f, enodebrate, 0.05f);
|
|
|
|
|
|
|
|
uerate = SRSLTE_VEC_EMA(ue_bits / 1000.0f, uerate, 0.001f);
|
|
|
|
float elapsed = (float)t[0].tv_usec + t[0].tv_sec * 1.0e+6f;
|
|
|
|
float elapsed = (float)t[0].tv_usec + t[0].tv_sec * 1.0e+6f;
|
|
|
|
if (elapsed != 0.0f) {
|
|
|
|
if (elapsed != 0.0f) {
|
|
|
|
procrate = SRSLTE_VEC_EMA(nof_bits/elapsed, procrate, 0.01f);
|
|
|
|
procrate = SRSLTE_VEC_EMA(ue_bits / elapsed, procrate, 0.01f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nframes++;
|
|
|
|
nframes++;
|
|
|
|
if (isnan(rsrq)) {
|
|
|
|
if (isnan(rsrq)) {
|
|
|
|
rsrq = 0;
|
|
|
|
rsrq = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isnan(noise)) {
|
|
|
|
if (isnan(snr)) {
|
|
|
|
noise = 0;
|
|
|
|
snr = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isnan(rsrp0)) {
|
|
|
|
if (isnan(rsrp0)) {
|
|
|
|
rsrp0 = 0;
|
|
|
|
rsrp0 = 0;
|
|
|
@ -801,74 +882,45 @@ int main(int argc, char **argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Plot and Printf
|
|
|
|
// Plot and Printf
|
|
|
|
if (sfidx == 5) {
|
|
|
|
if (sf_idx == 5) {
|
|
|
|
float gain = prog_args.rf_gain;
|
|
|
|
float gain = prog_args.rf_gain;
|
|
|
|
if (gain < 0) {
|
|
|
|
if (gain < 0) {
|
|
|
|
gain = 10 * log10(srslte_agc_get_gain(&ue_sync.agc));
|
|
|
|
gain = 10 * log10(srslte_agc_get_gain(&ue_sync.agc));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Print transmission scheme */
|
|
|
|
/* Print transmission scheme */
|
|
|
|
if (ue_dl.pdsch_cfg.mimo_type == SRSLTE_MIMO_TYPE_SPATIAL_MULTIPLEX) {
|
|
|
|
|
|
|
|
PRINT_LINE(" Tx scheme: %s (codebook_idx=%d)", srslte_mimotype2str(ue_dl.pdsch_cfg.mimo_type),
|
|
|
|
|
|
|
|
ue_dl.pdsch_cfg.codebook_idx);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
PRINT_LINE(" Tx scheme: %s", srslte_mimotype2str(ue_dl.pdsch_cfg.mimo_type));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Print basic Parameters */
|
|
|
|
/* Print basic Parameters */
|
|
|
|
PRINT_LINE(" nof layers: %d", ue_dl.pdsch_cfg.nof_layers);
|
|
|
|
|
|
|
|
PRINT_LINE("nof codewords: %d", SRSLTE_RA_DL_GRANT_NOF_TB(&ue_dl.pdsch_cfg.grant));
|
|
|
|
|
|
|
|
PRINT_LINE(" CFO: %+7.2f Hz", srslte_ue_sync_get_cfo(&ue_sync));
|
|
|
|
PRINT_LINE(" CFO: %+7.2f Hz", srslte_ue_sync_get_cfo(&ue_sync));
|
|
|
|
PRINT_LINE(" RSRP: %+5.1f dBm | %+5.1f dBm", 10 * log10(rsrp0)+30, 10 * log10(rsrp1)+30);
|
|
|
|
PRINT_LINE(" RSRP: %+5.1f dBm | %+5.1f dBm", rsrp0, rsrp1);
|
|
|
|
PRINT_LINE(" SNR: %+5.1f dB | %+5.1f dB", 10 * log10(rsrp0 / noise), 10 * log10(rsrp1 / noise));
|
|
|
|
PRINT_LINE(" SNR: %+5.1f dB", snr);
|
|
|
|
PRINT_LINE(" Rb: %6.2f / %6.2f / %6.2f Mbps (net/maximum/processing)", uerate, enodebrate, procrate);
|
|
|
|
PRINT_LINE(" TM: %d", last_decoded_tm + 1);
|
|
|
|
PRINT_LINE(" PDCCH-Miss: %5.2f%%", 100 * (1 - (float) ue_dl.nof_detected / nof_trials));
|
|
|
|
PRINT_LINE(
|
|
|
|
PRINT_LINE(" PDSCH-BLER: %5.2f%%", (float) 100 * ue_dl.pdsch_pkt_errors / ue_dl.pdsch_pkts_total);
|
|
|
|
" Rb: %6.2f / %6.2f / %6.2f Mbps (net/maximum/processing)", uerate, enodebrate, procrate);
|
|
|
|
|
|
|
|
PRINT_LINE(" PDCCH-Miss: %5.2f%%", 100 * (1 - (float)nof_detected / nof_trials));
|
|
|
|
|
|
|
|
PRINT_LINE(" PDSCH-BLER: %5.2f%%", (float)100 * pkt_errors / pkt_total);
|
|
|
|
|
|
|
|
|
|
|
|
if (prog_args.mbsfn_area_id > -1) {
|
|
|
|
if (prog_args.mbsfn_area_id > -1) {
|
|
|
|
PRINT_LINE(" PMCH-BLER: %5.2f%%", (float) 100 * ue_dl.pmch_pkt_errors/ue_dl.pmch_pkts_total);
|
|
|
|
PRINT_LINE(" PMCH-BLER: %5.2f%%", (float)100 * pkt_errors / pmch_pkt_total);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PRINT_LINE(" TB 0: mcs=%d; tbs=%d", ue_dl.pdsch_cfg.grant.mcs[0].idx,
|
|
|
|
|
|
|
|
ue_dl.pdsch_cfg.grant.mcs[0].tbs);
|
|
|
|
PRINT_LINE(" TB 0: mcs=%d; tbs=%d", pdsch_cfg.grant.tb[0].mcs_idx, pdsch_cfg.grant.tb[0].tbs);
|
|
|
|
PRINT_LINE(" TB 1: mcs=%d; tbs=%d", ue_dl.pdsch_cfg.grant.mcs[1].idx,
|
|
|
|
PRINT_LINE(" TB 1: mcs=%d; tbs=%d", pdsch_cfg.grant.tb[1].mcs_idx, pdsch_cfg.grant.tb[1].tbs);
|
|
|
|
ue_dl.pdsch_cfg.grant.mcs[1].tbs);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* MIMO: if tx and rx antennas are bigger than 1 */
|
|
|
|
/* MIMO: if tx and rx antennas are bigger than 1 */
|
|
|
|
if (cell.nof_ports > 1 && ue_dl.pdsch.nof_rx_antennas > 1) {
|
|
|
|
if (cell.nof_ports > 1 && ue_dl.pdsch.nof_rx_antennas > 1) {
|
|
|
|
|
|
|
|
uint32_t ri = 0;
|
|
|
|
|
|
|
|
float cn = 0;
|
|
|
|
/* Compute condition number */
|
|
|
|
/* Compute condition number */
|
|
|
|
if (srslte_ue_dl_ri_select(&ue_dl, NULL, &cn)) {
|
|
|
|
if (srslte_ue_dl_select_ri(&ue_dl, &ri, &cn)) {
|
|
|
|
/* Condition number calculation is not supported for the number of tx & rx antennas*/
|
|
|
|
/* Condition number calculation is not supported for the number of tx & rx antennas*/
|
|
|
|
PRINT_LINE(" κ: NA");
|
|
|
|
PRINT_LINE(" κ: NA");
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
/* Print condition number */
|
|
|
|
/* Print condition number */
|
|
|
|
PRINT_LINE(" κ: %.1f dB (Condition number, 0 dB => Best)", cn);
|
|
|
|
PRINT_LINE(" κ: %.1f dB, RI=%d (Condition number, 0 dB => Best)", cn, ri);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PRINT_LINE("");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Spatial multiplex only */
|
|
|
|
|
|
|
|
if (ue_dl.pdsch_cfg.mimo_type == SRSLTE_MIMO_TYPE_SPATIAL_MULTIPLEX) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Compute Rank Indicator (RI) and Precoding Matrix Indicator (PMI) */
|
|
|
|
|
|
|
|
if (!srslte_ue_dl_ri_pmi_select(&ue_dl, &ri, &pmi, NULL)) {
|
|
|
|
|
|
|
|
for (uint32_t nl = 0; nl < SRSLTE_MAX_LAYERS; nl++) {
|
|
|
|
|
|
|
|
for (uint32_t cb = 0; cb < SRSLTE_MAX_CODEBOOKS; cb++) {
|
|
|
|
|
|
|
|
sinr[nl][cb] = SRSLTE_VEC_EMA(ue_dl.sinr[nl][cb], sinr[nl][cb], 0.5f);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Print Multiplex stats */
|
|
|
|
|
|
|
|
PRINT_LINE("SINR (dB) Vs RI and PMI:");
|
|
|
|
|
|
|
|
PRINT_LINE(" | RI | 1 | 2 |");
|
|
|
|
|
|
|
|
PRINT_LINE(" -------+-------+-------+");
|
|
|
|
|
|
|
|
PRINT_LINE(" P | 0 | %5.2f%c| %5.2f%c|", 10 * log10(sinr[0][0]), (ri == 1 && pmi == 0) ? '*' : ' ',
|
|
|
|
|
|
|
|
10 * log10(sinr[1][0]), (ri == 2 && pmi == 0) ? '*' : ' ');
|
|
|
|
|
|
|
|
PRINT_LINE(" M | 1 | %5.2f%c| %5.2f%c|", 10 * log10(sinr[0][1]), (ri == 1 && pmi == 1) ? '*' : ' ',
|
|
|
|
|
|
|
|
10 * log10(sinr[1][1]), (ri == 2 && pmi == 1) ? '*' : ' ');
|
|
|
|
|
|
|
|
PRINT_LINE(" I | 2 | %5.2f%c|-------+ ", 10 * log10(sinr[0][2]), (ri == 1 && pmi == 2) ? '*' : ' ');
|
|
|
|
|
|
|
|
PRINT_LINE(" | 3 | %5.2f%c| ", 10 * log10(sinr[0][3]), (ri == 1 && pmi == 3) ? '*' : ' ');
|
|
|
|
|
|
|
|
PRINT_LINE("");
|
|
|
|
PRINT_LINE("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRINT_LINE("Press enter maximum printing debug log of 1 subframe.");
|
|
|
|
PRINT_LINE("Press enter maximum printing debug log of 1 subframe.");
|
|
|
|
PRINT_LINE("");
|
|
|
|
PRINT_LINE("");
|
|
|
|
PRINT_LINE_RESET_CURSOR();
|
|
|
|
PRINT_LINE_RESET_CURSOR();
|
|
|
@ -876,50 +928,45 @@ int main(int argc, char **argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sfidx == 9) {
|
|
|
|
if (sf_idx == 9) {
|
|
|
|
sfn++;
|
|
|
|
sfn++;
|
|
|
|
if (sfn == 1024) {
|
|
|
|
if (sfn == 1024) {
|
|
|
|
sfn = 0;
|
|
|
|
sfn = 0;
|
|
|
|
PRINT_LINE_ADVANCE_CURSOR();
|
|
|
|
PRINT_LINE_ADVANCE_CURSOR();
|
|
|
|
ue_dl.pdsch_pkt_errors = 0;
|
|
|
|
pkt_errors = 0;
|
|
|
|
ue_dl.pdsch_pkts_total = 0;
|
|
|
|
pkt_total = 0;
|
|
|
|
ue_dl.pmch_pkt_errors = 0;
|
|
|
|
pmch_pkt_errors = 0;
|
|
|
|
ue_dl.pmch_pkts_total = 0;
|
|
|
|
pmch_pkt_total = 0;
|
|
|
|
/*
|
|
|
|
|
|
|
|
ue_dl.pkt_errors = 0;
|
|
|
|
|
|
|
|
ue_dl.pkts_total = 0;
|
|
|
|
|
|
|
|
ue_dl.nof_detected = 0;
|
|
|
|
|
|
|
|
nof_trials = 0;
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
if ((sfn % 3) == 0 && decode_pdsch) {
|
|
|
|
if ((sfn % 3) == 0 && decode_pdsch) {
|
|
|
|
plot_sf_idx = srslte_ue_sync_get_sfidx(&ue_sync);
|
|
|
|
plot_sf_idx = sf_idx;
|
|
|
|
plot_track = true;
|
|
|
|
plot_track = true;
|
|
|
|
sem_post(&plot_sem);
|
|
|
|
sem_post(&plot_sem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|
} else if (ret == 0) {
|
|
|
|
} else if (ret == 0) {
|
|
|
|
printf("Finding PSS... Peak: %8.1f, FrameCnt: %d, State: %d\r",
|
|
|
|
printf("Finding PSS... Peak: %8.1f, FrameCnt: %d, State: %d\r",
|
|
|
|
srslte_sync_get_peak_value(&ue_sync.sfind),
|
|
|
|
srslte_sync_get_peak_value(&ue_sync.sfind),
|
|
|
|
ue_sync.frame_total_cnt, ue_sync.state);
|
|
|
|
ue_sync.frame_total_cnt,
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
ue_sync.state);
|
|
|
|
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
plot_sf_idx = srslte_ue_sync_get_sfidx(&ue_sync);
|
|
|
|
plot_sf_idx = srslte_ue_sync_get_sfidx(&ue_sync);
|
|
|
|
plot_track = false;
|
|
|
|
plot_track = false;
|
|
|
|
sem_post(&plot_sem);
|
|
|
|
sem_post(&plot_sem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sf_cnt++;
|
|
|
|
sf_cnt++;
|
|
|
|
} // Main loop
|
|
|
|
} // Main loop
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
if (!prog_args.disable_plots) {
|
|
|
|
if (!pthread_kill(plot_thread, 0)) {
|
|
|
|
if (!pthread_kill(plot_thread, 0)) {
|
|
|
|
pthread_kill(plot_thread, SIGHUP);
|
|
|
|
pthread_kill(plot_thread, SIGHUP);
|
|
|
@ -951,18 +998,10 @@ int main(int argc, char **argv) {
|
|
|
|
exit(0);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
/**********************************************************************
|
|
|
|
* Plotting Functions
|
|
|
|
* Plotting Functions
|
|
|
|
***********************************************************************/
|
|
|
|
***********************************************************************/
|
|
|
|
#ifndef DISABLE_GRAPHICS
|
|
|
|
#ifdef ENABLE_GUI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plot_real_t p_sync, pce;
|
|
|
|
plot_real_t p_sync, pce;
|
|
|
|
plot_scatter_t pscatequal, pscatequal_pdcch, pscatequal_pmch;
|
|
|
|
plot_scatter_t pscatequal, pscatequal_pdcch, pscatequal_pmch;
|
|
|
@ -975,7 +1014,6 @@ void *plot_thread_run(void *arg) {
|
|
|
|
int i;
|
|
|
|
int i;
|
|
|
|
uint32_t nof_re = SRSLTE_SF_LEN_RE(ue_dl.cell.nof_prb, ue_dl.cell.cp);
|
|
|
|
uint32_t nof_re = SRSLTE_SF_LEN_RE(ue_dl.cell.nof_prb, ue_dl.cell.cp);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sdrgui_init();
|
|
|
|
sdrgui_init();
|
|
|
|
|
|
|
|
|
|
|
|
plot_scatter_init(&pscatequal);
|
|
|
|
plot_scatter_init(&pscatequal);
|
|
|
@ -985,7 +1023,6 @@ void *plot_thread_run(void *arg) {
|
|
|
|
|
|
|
|
|
|
|
|
plot_scatter_addToWindowGrid(&pscatequal, (char*)"pdsch_ue", 0, 0);
|
|
|
|
plot_scatter_addToWindowGrid(&pscatequal, (char*)"pdsch_ue", 0, 0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (enable_mbsfn_plot) {
|
|
|
|
if (enable_mbsfn_plot) {
|
|
|
|
plot_scatter_init(&pscatequal_pmch);
|
|
|
|
plot_scatter_init(&pscatequal_pmch);
|
|
|
|
plot_scatter_setTitle(&pscatequal_pmch, "PMCH - Equalized Symbols");
|
|
|
|
plot_scatter_setTitle(&pscatequal_pmch, "PMCH - Equalized Symbols");
|
|
|
@ -1017,11 +1054,10 @@ void *plot_thread_run(void *arg) {
|
|
|
|
while (1) {
|
|
|
|
while (1) {
|
|
|
|
sem_wait(&plot_sem);
|
|
|
|
sem_wait(&plot_sem);
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t nof_symbols = ue_dl.pdsch_cfg.nbits[0].nof_re;
|
|
|
|
uint32_t nof_symbols = pdsch_cfg.grant.nof_re;
|
|
|
|
uint32_t nof_symbols_pmch = ue_dl.pmch_cfg.nbits[0].nof_re;
|
|
|
|
|
|
|
|
if (!prog_args.disable_plots_except_constellation) {
|
|
|
|
if (!prog_args.disable_plots_except_constellation) {
|
|
|
|
for (i = 0; i < nof_re; i++) {
|
|
|
|
for (i = 0; i < nof_re; i++) {
|
|
|
|
tmp_plot[i] = 20 * log10f(cabsf(ue_dl.sf_symbols[i]));
|
|
|
|
tmp_plot[i] = 20 * log10f(cabsf(ue_dl.sf_symbols[0][i]));
|
|
|
|
if (isinf(tmp_plot[i])) {
|
|
|
|
if (isinf(tmp_plot[i])) {
|
|
|
|
tmp_plot[i] = -80;
|
|
|
|
tmp_plot[i] = -80;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1030,7 +1066,7 @@ void *plot_thread_run(void *arg) {
|
|
|
|
bzero(tmp_plot2, sizeof(float) * sz);
|
|
|
|
bzero(tmp_plot2, sizeof(float) * sz);
|
|
|
|
int g = (sz - 12 * ue_dl.cell.nof_prb) / 2;
|
|
|
|
int g = (sz - 12 * ue_dl.cell.nof_prb) / 2;
|
|
|
|
for (i = 0; i < 12 * ue_dl.cell.nof_prb; i++) {
|
|
|
|
for (i = 0; i < 12 * ue_dl.cell.nof_prb; i++) {
|
|
|
|
tmp_plot2[g+i] = 20 * log10(cabs(ue_dl.ce[0][i]));
|
|
|
|
tmp_plot2[g + i] = 20 * log10(cabs(ue_dl.chest_res.ce[0][0][i]));
|
|
|
|
if (isinf(tmp_plot2[g + i])) {
|
|
|
|
if (isinf(tmp_plot2[g + i])) {
|
|
|
|
tmp_plot2[g + i] = -80;
|
|
|
|
tmp_plot2[g + i] = -80;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1047,14 +1083,14 @@ void *plot_thread_run(void *arg) {
|
|
|
|
pss_obj->frame_size + pss_obj->fft_size - 1);
|
|
|
|
pss_obj->frame_size + pss_obj->fft_size - 1);
|
|
|
|
plot_real_setNewData(&p_sync, tmp_plot2, pss_obj->frame_size);
|
|
|
|
plot_real_setNewData(&p_sync, tmp_plot2, pss_obj->frame_size);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
int max = srslte_vec_max_fi(ue_sync.sfind.pss.conv_output_avg, ue_sync.sfind.pss.frame_size+ue_sync.sfind.pss.fft_size-1);
|
|
|
|
int max = srslte_vec_max_fi(ue_sync.sfind.pss.conv_output_avg,
|
|
|
|
|
|
|
|
ue_sync.sfind.pss.frame_size + ue_sync.sfind.pss.fft_size - 1);
|
|
|
|
srslte_vec_sc_prod_fff(ue_sync.sfind.pss.conv_output_avg,
|
|
|
|
srslte_vec_sc_prod_fff(ue_sync.sfind.pss.conv_output_avg,
|
|
|
|
1 / ue_sync.sfind.pss.conv_output_avg[max],
|
|
|
|
1 / ue_sync.sfind.pss.conv_output_avg[max],
|
|
|
|
tmp_plot2,
|
|
|
|
tmp_plot2,
|
|
|
|
ue_sync.sfind.pss.frame_size + ue_sync.sfind.pss.fft_size - 1);
|
|
|
|
ue_sync.sfind.pss.frame_size + ue_sync.sfind.pss.fft_size - 1);
|
|
|
|
plot_real_setNewData(&p_sync, tmp_plot2, ue_sync.sfind.pss.frame_size);
|
|
|
|
plot_real_setNewData(&p_sync, tmp_plot2, ue_sync.sfind.pss.frame_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
plot_scatter_setNewData(&pscatequal_pdcch, ue_dl.pdcch.d, 36 * ue_dl.pdcch.nof_cce[0]);
|
|
|
|
plot_scatter_setNewData(&pscatequal_pdcch, ue_dl.pdcch.d, 36 * ue_dl.pdcch.nof_cce[0]);
|
|
|
@ -1063,22 +1099,21 @@ void *plot_thread_run(void *arg) {
|
|
|
|
plot_scatter_setNewData(&pscatequal, ue_dl.pdsch.d[0], nof_symbols);
|
|
|
|
plot_scatter_setNewData(&pscatequal, ue_dl.pdsch.d[0], nof_symbols);
|
|
|
|
|
|
|
|
|
|
|
|
if (enable_mbsfn_plot) {
|
|
|
|
if (enable_mbsfn_plot) {
|
|
|
|
plot_scatter_setNewData(&pscatequal_pmch, ue_dl.pmch.d, nof_symbols_pmch);
|
|
|
|
plot_scatter_setNewData(&pscatequal_pmch, ue_dl.pmch.d, nof_symbols);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (plot_sf_idx == 1) {
|
|
|
|
if (plot_sf_idx == 1) {
|
|
|
|
if (prog_args.net_port_signal > 0) {
|
|
|
|
if (prog_args.net_port_signal > 0) {
|
|
|
|
srslte_netsink_write(&net_sink_signal, &sf_buffer[srslte_ue_sync_sf_len(&ue_sync)/7],
|
|
|
|
srslte_netsink_write(
|
|
|
|
srslte_ue_sync_sf_len(&ue_sync));
|
|
|
|
&net_sink_signal, &sf_buffer[srslte_ue_sync_sf_len(&ue_sync) / 7], srslte_ue_sync_sf_len(&ue_sync));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void init_plots() {
|
|
|
|
void init_plots()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
if (sem_init(&plot_sem, 0, 0)) {
|
|
|
|
if (sem_init(&plot_sem, 0, 0)) {
|
|
|
|
perror("sem_init");
|
|
|
|
perror("sem_init");
|
|
|
@ -1097,4 +1132,4 @@ void init_plots() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_GUI */
|
|
|
|