I am looking at the mmWave Sensing Estimator code.
and I have two question about idle_time function
( below part is idle_time code )
var idle_time = function(valid_sweep_bandwidth) {
if (valid_sweep_bandwidth <= 1000) {
return 2;
} else if (num_virtual_rx <= 2000) {
return 5;
} else if (num_virtual_rx <= 3000) {
return 6;
} else {
return 7;
}
};
1. why does num_virtual_rx use instead of valid_sweep_bandwidth ?
2. which case is num_vertual_rx > 2000 ?
Thanks