Skip to content
Snippets Groups Projects
Commit 11d49c91 authored by Sarod Yatawatta's avatar Sarod Yatawatta
Browse files

COB-153: fixed warning unused variable, only needed when delaycomp enabled

parent b72ef344
No related branches found
No related tags found
1 merge request!249COB 153 - Doppler correction in correlator pipeline
...@@ -150,7 +150,9 @@ extern "C" { ...@@ -150,7 +150,9 @@ extern "C" {
/* The z dimension is NR_STATIONS wide. */ /* The z dimension is NR_STATIONS wide. */
const unsigned station = blockIdx.z * blockDim.z + threadIdx.z; const unsigned station = blockIdx.z * blockDim.z + threadIdx.z;
#if defined DELAY_COMPENSATION
const unsigned delayIdx = delayIndices[station]; const unsigned delayIdx = delayIndices[station];
#endif
/* /*
* channel: will cover all channels * channel: will cover all channels
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment