1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 23:14:47 -04:00

M17: M17Randomizer code cleanup

This commit is contained in:
f4exb
2022-07-31 04:54:39 +02:00
parent ca24d1bc57
commit e29581a0b2
7 changed files with 38 additions and 307 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "M17Randomizer.h"
namespace modemm17
{
const std::array<uint8_t, 46> M17Randomizer::DC = std::array<uint8_t, 46>{
0xd6, 0xb5, 0xe2, 0x30, 0x82, 0xFF, 0x84, 0x62,
0xba, 0x4e, 0x96, 0x90, 0xd8, 0x98, 0xdd, 0x5d,
0x0c, 0xc8, 0x52, 0x43, 0x91, 0x1d, 0xf8, 0x6e,
0x68, 0x2F, 0x35, 0xda, 0x14, 0xea, 0xcd, 0x76,
0x19, 0x8d, 0xd5, 0x80, 0xd1, 0x33, 0x87, 0x13,
0x57, 0x18, 0x2d, 0x29, 0x78, 0xc3};
}