Deep redesign: Better support for FCD dongles #2

pull/6/head
f4exb 2015-09-03 04:02:26 +02:00
rodzic a909c4c40c
commit 6910ea7e22
1 zmienionych plików z 16 dodań i 0 usunięć

Wyświetl plik

@ -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>
{