1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

Deep redesign: Better support for FCD dongles #2

This commit is contained in:
f4exb 2015-09-03 04:02:26 +02:00
parent a909c4c40c
commit 6910ea7e22

View File

@ -36,6 +36,22 @@ struct decimation_shifts
static const uint post32 = 0;
};
template<>
struct decimation_shifts<16, 16>
{
static const uint pre1 = 0;
static const uint pre2 = 0;
static const uint post2 = 1;
static const uint pre4 = 0;
static const uint post4 = 2;
static const uint pre8 = 0;
static const uint post8 = 3;
static const uint pre16 = 0;
static const uint post16 = 4;
static const uint pre32 = 0;
static const uint post32 = 5;
};
template<>
struct decimation_shifts<16, 12>
{