summaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
Diffstat (limited to 'src/input')
-rw-r--r--src/input/Prbs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/Prbs.cpp b/src/input/Prbs.cpp
index 607ce9f..7856a46 100644
--- a/src/input/Prbs.cpp
+++ b/src/input/Prbs.cpp
@@ -42,7 +42,7 @@ namespace Inputs {
// ETS 300 799 Clause G.2.1
// Preferred polynomial is G(x) = x^20 + x^17 + 1
-const uint32_t PRBS_DEFAULT_POLY = (1 << 19) | (1 << 16) | 1;
+const uint32_t PRBS_DEFAULT_POLY = (1 << 20) | (1 << 17) | (1 << 0);
int Prbs::open(const string& name)
{