Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
oai1B
openairinterface5G
Commits
451e1afc
Commit
451e1afc
authored
Dec 20, 2016
by
laurent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix measurement
parent
2fa96a12
Pipeline
#3355
passed with stage
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
83 additions
and
60 deletions
+83
-60
openair2/UTIL/LOG/log.h
openair2/UTIL/LOG/log.h
+21
-1
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
+6
-22
targets/RT/USER/lte-ue.c
targets/RT/USER/lte-ue.c
+56
-37
No files found.
openair2/UTIL/LOG/log.h
View file @
451e1afc
...
@@ -52,7 +52,27 @@
...
@@ -52,7 +52,27 @@
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
extern
double
cpuf
;
static
inline
unsigned
long
long
rdtsc
(
void
)
{
unsigned
long
long
a
,
d
;
__asm__
volatile
(
"rdtsc"
:
"=a"
(
a
),
"=d"
(
d
));
return
(
d
<<
32
)
|
a
;
}
static
inline
unsigned
long
long
checkT
(
int
timeout
,
char
*
file
,
int
line
)
{
static
unsigned
long
long
__thread
last
=
0
;
unsigned
long
long
cur
=
rdtsc
();
int
microCycles
=
(
int
)(
cpuf
*
1000
);
int
duration
=
(
int
)((
cur
-
last
)
/
microCycles
);
if
(
last
!=
0
&&
duration
>
timeout
)
printf
(
"%s:%d lte-ue delay %d (exceed %d)
\n
"
,
file
,
line
,
duration
,
timeout
);
last
=
cur
;
return
cur
;
}
#define check(a) checkT(a,__FILE__,__LINE__)
/** @defgroup _LOG LOG Generator
/** @defgroup _LOG LOG Generator
* @{*/
* @{*/
/* @}*/
/* @}*/
...
...
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
View file @
451e1afc
...
@@ -96,26 +96,7 @@ typedef struct {
...
@@ -96,26 +96,7 @@ typedef struct {
openair0_timestamp
rx_timestamp
;
openair0_timestamp
rx_timestamp
;
}
usrp_state_t
;
}
usrp_state_t
;
extern
double
cpuf
;
#if defined(__x86_64)
static
inline
unsigned
long
long
rdtsc
(
void
)
{
unsigned
long
long
a
,
d
;
__asm__
volatile
(
"rdtsc"
:
"=a"
(
a
),
"=d"
(
d
));
return
(
d
<<
32
)
|
a
;
}
static
inline
unsigned
long
long
checkT
(
int
timeout
,
char
*
file
,
int
line
)
{
static
unsigned
long
long
__thread
last
;
unsigned
long
long
cur
=
rdtsc
();
int
microCycles
=
(
int
)(
cpuf
*
1000
);
if
(
(
cur
-
last
)
>
timeout
*
microCycles
)
printf
(
"%s:%d lte-ue delay %d
\n
"
,
file
,
line
,(
int
)((
cur
-
last
)
/
microCycles
));
last
=
cur
;
return
cur
;
}
#define check(a) checkT(a,__FILE__,__LINE__)
#else
static
inline
unsigned
long
long
check
(
int
a
)
{};
#endif
/*! \brief Called to start the USRP transceiver. Return 0 if OK, < 0 if error
/*! \brief Called to start the USRP transceiver. Return 0 if OK, < 0 if error
...
@@ -603,6 +584,9 @@ extern "C" {
...
@@ -603,6 +584,9 @@ extern "C" {
}
}
}
}
//s->usrp->set_clock_source("external");
//s->usrp->set_time_source("external");
// display USRP settings
// display USRP settings
LOG_I
(
PHY
,
"Actual master clock: %fMHz...
\n
"
,
s
->
usrp
->
get_master_clock_rate
()
/
1e6
);
LOG_I
(
PHY
,
"Actual master clock: %fMHz...
\n
"
,
s
->
usrp
->
get_master_clock_rate
()
/
1e6
);
...
@@ -637,7 +621,7 @@ extern "C" {
...
@@ -637,7 +621,7 @@ extern "C" {
LOG_I
(
PHY
,
" Actual RX frequency: %fGHz...
\n
"
,
s
->
usrp
->
get_rx_freq
(
i
)
/
1e9
);
LOG_I
(
PHY
,
" Actual RX frequency: %fGHz...
\n
"
,
s
->
usrp
->
get_rx_freq
(
i
)
/
1e9
);
LOG_I
(
PHY
,
" Actual RX gain: %f...
\n
"
,
s
->
usrp
->
get_rx_gain
(
i
));
LOG_I
(
PHY
,
" Actual RX gain: %f...
\n
"
,
s
->
usrp
->
get_rx_gain
(
i
));
LOG_I
(
PHY
,
" Actual RX bandwidth: %fM...
\n
"
,
s
->
usrp
->
get_rx_bandwidth
(
i
)
/
1e6
);
LOG_I
(
PHY
,
" Actual RX bandwidth: %fM...
\n
"
,
s
->
usrp
->
get_rx_bandwidth
(
i
)
/
1e6
);
LOG_I
(
PHY
,
" Actual RX antenna: %s...
\n
"
,
s
->
usrp
->
get_rx_antenna
(
i
));
LOG_I
(
PHY
,
" Actual RX antenna: %s...
\n
"
,
s
->
usrp
->
get_rx_antenna
(
i
)
.
c_str
()
);
}
}
for
(
int
i
=
0
;
i
<
openair0_cfg
[
0
].
tx_num_channels
;
i
++
)
{
for
(
int
i
=
0
;
i
<
openair0_cfg
[
0
].
tx_num_channels
;
i
++
)
{
...
@@ -646,7 +630,7 @@ extern "C" {
...
@@ -646,7 +630,7 @@ extern "C" {
LOG_I
(
PHY
,
" Actual TX frequency: %fGHz...
\n
"
,
s
->
usrp
->
get_tx_freq
(
i
)
/
1e9
);
LOG_I
(
PHY
,
" Actual TX frequency: %fGHz...
\n
"
,
s
->
usrp
->
get_tx_freq
(
i
)
/
1e9
);
LOG_I
(
PHY
,
" Actual TX gain: %f...
\n
"
,
s
->
usrp
->
get_tx_gain
(
i
));
LOG_I
(
PHY
,
" Actual TX gain: %f...
\n
"
,
s
->
usrp
->
get_tx_gain
(
i
));
LOG_I
(
PHY
,
" Actual TX bandwidth: %fM...
\n
"
,
s
->
usrp
->
get_tx_bandwidth
(
i
)
/
1e6
);
LOG_I
(
PHY
,
" Actual TX bandwidth: %fM...
\n
"
,
s
->
usrp
->
get_tx_bandwidth
(
i
)
/
1e6
);
LOG_I
(
PHY
,
" Actual TX antenna: %
u
...
\n
"
,
s
->
usrp
->
get_tx_antenna
(
i
));
LOG_I
(
PHY
,
" Actual TX antenna: %
s
...
\n
"
,
s
->
usrp
->
get_tx_antenna
(
i
)
.
c_str
()
);
}
}
LOG_I
(
PHY
,
"Device timestamp: %f...
\n
"
,
s
->
usrp
->
get_time_now
().
get_real_secs
());
LOG_I
(
PHY
,
"Device timestamp: %f...
\n
"
,
s
->
usrp
->
get_time_now
().
get_real_secs
());
...
...
targets/RT/USER/lte-ue.c
View file @
451e1afc
...
@@ -76,24 +76,9 @@
...
@@ -76,24 +76,9 @@
#include "UTIL/OPT/opt.h"
#include "UTIL/OPT/opt.h"
/* start SYRTEM */
/* start SYRTEM */
extern
double
cpuf
;
static
inline
unsigned
long
long
rdtsc
(
void
)
{
unsigned
long
long
a
,
d
;
__asm__
volatile
(
"rdtsc"
:
"=a"
(
a
),
"=d"
(
d
));
return
(
d
<<
32
)
|
a
;
}
static
inline
unsigned
long
long
checkT
(
int
timeout
,
char
*
file
,
int
line
)
{
static
unsigned
long
long
__thread
last
;
unsigned
long
long
cur
=
rdtsc
();
int
microCycles
=
(
int
)(
cpuf
*
1000
);
if
(
(
cur
-
last
)
>
timeout
*
microCycles
)
printf
(
"%s:%d lte-ue delay %d
\n
"
,
file
,
line
,(
int
)((
cur
-
last
)
/
microCycles
));
last
=
cur
;
return
cur
;
}
#define DEBUG_REALTIME 1
#define DEBUG_REALTIME 1
#if DEBUG_REALTIME
#if DEBUG_REALTIME
#define check(a) checkT(a,__FILE__,__LINE__)
typedef
struct
latency_stat
{
typedef
struct
latency_stat
{
uint64_t
counter
;
uint64_t
counter
;
...
@@ -126,7 +111,7 @@ static inline void saif_meas(int frame_rx) {
...
@@ -126,7 +111,7 @@ static inline void saif_meas(int frame_rx) {
else
else
latency_stat
.
stat3000
++
;
latency_stat
.
stat3000
++
;
}
}
if
(
diffTime
>=
1100
)
{
if
(
diffTime
>=
1100
||
latency_stat
.
counter
%
20000
==
0
)
{
time_t
current
=
time
(
NULL
);
time_t
current
=
time
(
NULL
);
LOG_W
(
HW
,
LOG_W
(
HW
,
"%.2f delay=%llu Period stats %2.6f%% below 100µs
\n
cumul of events: 1100=%ld 1200=%ld 1500=%ld 2000=%ld >3000=%ld - (frame_rx=%d) - %s"
,
"%.2f delay=%llu Period stats %2.6f%% below 100µs
\n
cumul of events: 1100=%ld 1200=%ld 1500=%ld 2000=%ld >3000=%ld - (frame_rx=%d) - %s"
,
...
@@ -141,12 +126,50 @@ static inline void saif_meas(int frame_rx) {
...
@@ -141,12 +126,50 @@ static inline void saif_meas(int frame_rx) {
frame_rx
,
ctime
(
&
current
));
frame_rx
,
ctime
(
&
current
));
fflush
(
stdout
);
fflush
(
stdout
);
}
}
}
}
last
=
now
;
last
=
now
;
}
}
typedef
struct
m
{
unsigned
long
long
iterations
;
unsigned
long
long
sum
;
unsigned
long
long
maxArray
[
11
];
}
Meas
;
void
printMeas
(
char
*
txt
,
Meas
*
M
,
int
period
)
{
if
(
M
->
iterations
%
period
==
0
)
{
char
txt2
[
512
];
sprintf
(
txt2
,
"%s avg=%llu, iterations=%llu, max=%llu/%llu/%llu/%llu/%llu/%llu/%llu/%llu/%llu/%llu
\n
"
,
txt
,
M
->
sum
/
M
->
iterations
,
M
->
iterations
,
M
->
maxArray
[
1
],
M
->
maxArray
[
2
],
M
->
maxArray
[
3
],
M
->
maxArray
[
4
],
M
->
maxArray
[
5
],
M
->
maxArray
[
6
],
M
->
maxArray
[
7
],
M
->
maxArray
[
8
],
M
->
maxArray
[
9
],
M
->
maxArray
[
10
]);
LOG_W
(
PHY
,
txt2
);
}
}
int
cmpint
(
const
void
*
a
,
const
void
*
b
)
{
unsigned
long
long
*
aa
=
(
unsigned
long
long
*
)
a
;
unsigned
long
long
*
bb
=
(
unsigned
long
long
*
)
b
;
return
(
int
)(
*
aa
-*
bb
);
}
void
updateTimes
(
unsigned
long
long
start
,
Meas
*
M
,
int
period
,
char
*
txt
)
{
unsigned
long
long
end
=
rdtsc
();
long
long
diff
=
(
end
-
start
)
/
(
cpuf
*
1000
);
M
->
maxArray
[
0
]
=
diff
;
M
->
sum
+=
diff
;
M
->
iterations
++
;
qsort
(
M
->
maxArray
,
11
,
sizeof
(
unsigned
long
long
),
cmpint
);
printMeas
(
txt
,
M
,
period
);
}
#else
#else
#define check(a) do {} while (0)
#define check(a) do {} while (0)
#define saif_meas(a) do {} while (0)
#define saif_meas(a) do {} while (0)
#define update_max_times(a,b) do {} while (0)
#define print_meas(a,b) do {} while (0)
#endif
#endif
/* End of Changed by SYRTEM */
/* End of Changed by SYRTEM */
...
@@ -392,9 +415,6 @@ static void *UE_thread_synch(void *arg) {
...
@@ -392,9 +415,6 @@ static void *UE_thread_synch(void *arg) {
#endif
#endif
printf
(
"starting UE synch thread (IC %d)
\n
"
,
UE
->
proc
.
instance_cnt_synch
);
printf
(
"starting UE synch thread (IC %d)
\n
"
,
UE
->
proc
.
instance_cnt_synch
);
ind
=
0
;
ind
=
0
;
found
=
0
;
found
=
0
;
...
@@ -694,7 +714,7 @@ static void *UE_thread_rxn_txnp4(void *arg) {
...
@@ -694,7 +714,7 @@ static void *UE_thread_rxn_txnp4(void *arg) {
int
ret
;
int
ret
;
PHY_VARS_UE
*
UE
=
PHY_vars_UE_g
[
0
][
proc
->
CC_id
];
PHY_VARS_UE
*
UE
=
PHY_vars_UE_g
[
0
][
proc
->
CC_id
];
proc
->
instance_cnt_rxtx
=-
1
;
static
long
long
__thread
instance_cnt_rxtx
=-
1
;
proc
->
subframe_rx
=
proc
->
sub_frame_start
;
proc
->
subframe_rx
=
proc
->
sub_frame_start
;
char
threadName
[
256
]
=
{
0
};
char
threadName
[
256
]
=
{
0
};
...
@@ -709,22 +729,22 @@ static void *UE_thread_rxn_txnp4(void *arg) {
...
@@ -709,22 +729,22 @@ static void *UE_thread_rxn_txnp4(void *arg) {
// Wait Rx data to process are available
// Wait Rx data to process are available
AssertFatal
(
pthread_mutex_lock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
AssertFatal
(
pthread_mutex_lock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
pthread_cond_wait
(
&
proc
->
cond_rxtx
,
&
proc
->
mutex_rxtx
);
pthread_cond_wait
(
&
proc
->
cond_rxtx
,
&
proc
->
mutex_rxtx
);
if
(
(
proc
->
instance_cnt_rxtx
+
proc
->
sub_frame_step
)
%
10
!=
proc
->
subframe_rx
&&
proc
->
instance_cnt_rxtx
!=-
1
)
if
(
(
instance_cnt_rxtx
+
proc
->
sub_frame_step
)
%
10
!=
proc
->
subframe_rx
&&
instance_cnt_rxtx
!=-
1
)
LOG_W
(
PHY
,
"REAL TIME NOT MATCHED: missed a sub-frame: expecting %d, got %d
\n
"
,
LOG_W
(
PHY
,
"REAL TIME NOT MATCHED: missed a sub-frame: expecting %d, got %d
\n
"
,
(
proc
->
instance_cnt_rxtx
+
proc
->
sub_frame_step
)
%
10
,
proc
->
subframe_rx
);
(
instance_cnt_rxtx
+
proc
->
sub_frame_step
)
%
10
,
proc
->
subframe_rx
);
proc
->
instance_cnt_rxtx
=
proc
->
subframe_rx
;
instance_cnt_rxtx
=
proc
->
subframe_rx
;
AssertFatal
(
pthread_mutex_unlock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
AssertFatal
(
pthread_mutex_unlock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
static
__thread
Meas
t2
=
{
0
},
t3
=
{
0
};
unsigned
long
long
current
=
rdtsc
();
unsigned
long
long
current
=
rdtsc
();
if
(
(
current
-
proc
->
gotIQs
)
/
(
int
)(
cpuf
*
1000
*
100
)
>
100
)
updateTimes
(
proc
->
gotIQs
,
&
t2
,
10000
,
"saif: Delay to wake up UE_Thread_Rx (case 2)"
);
LOG_W
(
PHY
,
"Delay to wake up UE_Thread_Rx > 100µs, actual value= %d µs
\n
"
,
(
current
-
proc
->
gotIQs
)
/
(
int
)(
cpuf
*
1000
*
100
));
check
(
2000
);
// Process Rx data for one sub-frame
// Process Rx data for one sub-frame
if
((
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_rx
)
==
SF_DL
)
||
if
((
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_rx
)
==
SF_DL
)
||
(
UE
->
frame_parms
.
frame_type
==
FDD
)
||
(
UE
->
frame_parms
.
frame_type
==
FDD
)
||
(
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_rx
)
==
SF_S
))
{
(
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_rx
)
==
SF_S
))
{
phy_procedures_UE_RX
(
UE
,
proc
,
0
,
0
,
UE
->
mode
,
no_relay
,
NULL
);
phy_procedures_UE_RX
(
UE
,
proc
,
0
,
0
,
UE
->
mode
,
no_relay
,
NULL
);
}
}
check
(
600
);
if
(
UE
->
mac_enabled
==
1
)
{
if
(
UE
->
mac_enabled
==
1
)
{
ret
=
mac_xface
->
ue_scheduler
(
UE
->
Mod_id
,
ret
=
mac_xface
->
ue_scheduler
(
UE
->
Mod_id
,
proc
->
frame_tx
,
proc
->
frame_tx
,
...
@@ -749,14 +769,13 @@ static void *UE_thread_rxn_txnp4(void *arg) {
...
@@ -749,14 +769,13 @@ static void *UE_thread_rxn_txnp4(void *arg) {
LOG_E
(
PHY
,
"[UE %"
PRIu8
"] Frame %"
PRIu32
", subframe %u %s
\n
"
,
LOG_E
(
PHY
,
"[UE %"
PRIu8
"] Frame %"
PRIu32
", subframe %u %s
\n
"
,
UE
->
Mod_id
,
proc
->
frame_rx
,
proc
->
subframe_tx
,
txt
);
UE
->
Mod_id
,
proc
->
frame_rx
,
proc
->
subframe_tx
,
txt
);
}
}
check
(
100
);
// Prepare the future Tx data
// Prepare the future Tx data
if
((
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_tx
)
==
SF_UL
)
||
if
((
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_tx
)
==
SF_UL
)
||
(
UE
->
frame_parms
.
frame_type
==
FDD
)
||
(
UE
->
frame_parms
.
frame_type
==
FDD
)
||
(
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_tx
)
==
SF_S
))
(
subframe_select
(
&
UE
->
frame_parms
,
proc
->
subframe_tx
)
==
SF_S
))
if
(
UE
->
mode
!=
loop_through_memory
)
if
(
UE
->
mode
!=
loop_through_memory
)
phy_procedures_UE_TX
(
UE
,
proc
,
0
,
0
,
UE
->
mode
,
no_relay
);
phy_procedures_UE_TX
(
UE
,
proc
,
0
,
0
,
UE
->
mode
,
no_relay
);
check
(
200
);
updateTimes
(
current
,
&
t3
,
10000
,
"saif: Delay to process sub-frame (case 3)"
);
}
}
// thread finished
// thread finished
return
&
UE_thread_rxtx_retval
;
return
&
UE_thread_rxtx_retval
;
...
@@ -921,7 +940,6 @@ void *UE_thread(void *arg) {
...
@@ -921,7 +940,6 @@ void *UE_thread(void *arg) {
rxp
,
rxp
,
readBlockSize
,
readBlockSize
,
UE
->
frame_parms
.
nb_antennas_rx
),
""
);
UE
->
frame_parms
.
nb_antennas_rx
),
""
);
check
(
1020
);
AssertFatal
(
writeBlockSize
==
AssertFatal
(
writeBlockSize
==
UE
->
rfdevice
.
trx_write_func
(
&
UE
->
rfdevice
,
UE
->
rfdevice
.
trx_write_func
(
&
UE
->
rfdevice
,
timestamp
+
timestamp
+
...
@@ -932,7 +950,6 @@ void *UE_thread(void *arg) {
...
@@ -932,7 +950,6 @@ void *UE_thread(void *arg) {
writeBlockSize
,
writeBlockSize
,
UE
->
frame_parms
.
nb_antennas_tx
,
UE
->
frame_parms
.
nb_antennas_tx
,
1
),
""
);
1
),
""
);
check
(
100
);
if
(
sub_frame
==
9
)
{
if
(
sub_frame
==
9
)
{
// read in first symbol of next frame and adjust for timing drift
// read in first symbol of next frame and adjust for timing drift
int
first_symbols
=
writeBlockSize
-
readBlockSize
;
int
first_symbols
=
writeBlockSize
-
readBlockSize
;
...
@@ -947,15 +964,14 @@ void *UE_thread(void *arg) {
...
@@ -947,15 +964,14 @@ void *UE_thread(void *arg) {
LOG_E
(
PHY
,
"can't compensate: diff =%d
\n
"
,
first_symbols
);
LOG_E
(
PHY
,
"can't compensate: diff =%d
\n
"
,
first_symbols
);
}
}
unsigned
long
long
gotIQs
=
rdtsc
();
unsigned
long
long
gotIQs
=
rdtsc
();
check
(
250
);
// operate on thread sf mod 2
// operate on thread sf mod 2
AssertFatal
(
pthread_mutex_lock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
AssertFatal
(
pthread_mutex_lock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
if
(
sub_frame
==
0
)
{
if
(
sub_frame
==
0
)
{
UE
->
proc
.
proc_rxtx
[
0
].
frame_rx
++
;
UE
->
proc
.
proc_rxtx
[
0
].
frame_rx
++
;
UE
->
proc
.
proc_rxtx
[
1
].
frame_rx
++
;
UE
->
proc
.
proc_rxtx
[
1
].
frame_rx
++
;
UE
->
proc
.
proc_rxtx
[
0
].
gotIQs
=
gotIQs
;
UE
->
proc
.
proc_rxtx
[
1
].
gotIQs
=
gotIQs
;
}
}
UE
->
proc
.
proc_rxtx
[
0
].
gotIQs
=
gotIQs
;
UE
->
proc
.
proc_rxtx
[
1
].
gotIQs
=
gotIQs
;
proc
->
subframe_rx
=
sub_frame
;
proc
->
subframe_rx
=
sub_frame
;
proc
->
subframe_tx
=
(
sub_frame
+
4
)
%
10
;
proc
->
subframe_tx
=
(
sub_frame
+
4
)
%
10
;
proc
->
frame_tx
=
proc
->
frame_rx
+
(
proc
->
subframe_rx
>
5
?
1
:
0
);
proc
->
frame_tx
=
proc
->
frame_rx
+
(
proc
->
subframe_rx
>
5
?
1
:
0
);
...
@@ -965,9 +981,12 @@ void *UE_thread(void *arg) {
...
@@ -965,9 +981,12 @@ void *UE_thread(void *arg) {
AssertFatal
(
pthread_cond_signal
(
&
proc
->
cond_rxtx
)
==
0
,
""
);
AssertFatal
(
pthread_cond_signal
(
&
proc
->
cond_rxtx
)
==
0
,
""
);
AssertFatal
(
pthread_mutex_unlock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
AssertFatal
(
pthread_mutex_unlock
(
&
proc
->
mutex_rxtx
)
==
0
,
""
);
check
(
50
);
static
__thread
Meas
t1
=
{
0
};
static
unsigned
long
long
lastTime
=
0
;
if
(
lastTime
!=
0
)
updateTimes
(
lastTime
,
&
t1
,
20000
,
"saif: Delay between two IQ acquisitions (case 1)"
);
lastTime
=
rdtsc
();
saif_meas
(
proc
->
frame_rx
);
saif_meas
(
proc
->
frame_rx
);
check
(
50
);
}
else
{
}
else
{
printf
(
"Processing subframe %d"
,
proc
->
subframe_rx
);
printf
(
"Processing subframe %d"
,
proc
->
subframe_rx
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment