Add support for all SFs

pull/21/head
Pieter Robyns 2016-09-29 14:46:03 +02:00
rodzic a90a0569a7
commit 7478644729
4 zmienionych plików z 86 dodań i 45 usunięć

Wyświetl plik

@ -333,6 +333,8 @@ namespace gr {
float instantaneous_freq[d_samples_per_symbol];
float bins[d_number_of_bins];
samples_to_file("/tmp/data", &samples[0], d_samples_per_symbol, sizeof(gr_complex));
// Determine instant phase
for(unsigned int i = 0; i < d_samples_per_symbol; i++) {
instantaneous_phase[i] = arg(samples[i]);
@ -417,7 +419,7 @@ namespace gr {
for(unsigned int j = 0; j < bits_per_word; j++) {
uint8_t power = pow(2, j);
unsigned int power_check = pow(2, offset_diag); // TODO: Here we are actually reversing endianess. This needs to be fixed in the future by implementing the interleaving similarly to how it is done in the Python based decoder.
unsigned int power_check = pow(2, offset_diag);
if((d_words[j] & power_check) > 0) { // Mask triggers
d += power;
}
@ -433,7 +435,7 @@ namespace gr {
}
std::reverse(words_deinterleaved.begin(),words_deinterleaved.end());
//print_vector(words_deinterleaved, "D", sizeof(uint8_t)*8);
print_vector(d_debug, words_deinterleaved, "D", sizeof(uint8_t)*8);
// Add to demodulated data
for(int i = 0; i < words_deinterleaved.size(); i++) {
@ -451,24 +453,29 @@ namespace gr {
if(is_header) {
prng = prng_header;
} else {
if(d_cr == 4)
prng = prng_payload_cr8;
else if(d_cr == 3)
prng = prng_payload_cr7;
else if(d_cr == 2)
prng = prng_payload_cr6;
else if(d_cr == 1)
prng = prng_payload_cr5;
if(d_sf == 7)
prng = prng_payload_sf7;
else if(d_sf == 8)
prng = prng_payload_sf8;
else if(d_sf == 9)
prng = prng_payload_sf9;
else if(d_sf == 10)
prng = prng_payload_sf10;
else if(d_sf == 11)
prng = prng_payload_sf11;
else if(d_sf == 12)
prng = prng_payload_sf12;
else
prng = prng_payload_cr8;
prng = prng_payload_sf7;
}
deshuffle(shuffle_pattern);
deshuffle(shuffle_pattern, is_header);
dewhiten(prng);
hamming_decode(out_data);
// Nibbles are reversed
nibble_reverse(out_data, d_payload_length);
// Nibbles are reversed for uneven spreading factors TODO why is this?
if(d_sf % 2 == 1)
nibble_reverse(out_data, d_payload_length);
// Print result
std::stringstream result;
@ -484,8 +491,10 @@ namespace gr {
return 0;
}
void decoder_impl::deshuffle(const uint8_t* shuffle_pattern) {
for(int i = 0; i < d_demodulated.size(); i++) {
void decoder_impl::deshuffle(const uint8_t* shuffle_pattern, bool is_header) {
uint32_t to_decode = d_demodulated.size();
for(uint32_t i = 0; i < to_decode; i++) {
uint8_t original = d_demodulated[i];
uint8_t result = 0;
@ -499,8 +508,9 @@ namespace gr {
d_words_deshuffled.push_back(result);
}
//print_vector(d_words_deshuffled, "S", sizeof(uint8_t)*8);
//print_vector_raw(d_words_deshuffled, sizeof(uint8_t)*8);
//print_vector(d_debug, d_words_deshuffled, "S", sizeof(uint8_t)*8);
print_vector_raw(d_debug, d_words_deshuffled, sizeof(uint8_t)*8);
d_debug << std::endl;
// We're done with these words
d_demodulated.clear();
@ -509,13 +519,13 @@ namespace gr {
void decoder_impl::dewhiten(const uint8_t* prng) {
for(int i = 0; i < d_words_deshuffled.size(); i++) {
uint8_t xor_b = d_words_deshuffled[i] ^ prng[i];
xor_b = (xor_b & 0xF0) >> 4 | (xor_b & 0x0F) << 4; // TODO: reverse bit order is performed here, but is probably due to mistake in interleaving
xor_b = (xor_b & 0xF0) >> 4 | (xor_b & 0x0F) << 4; // TODO: reverse bit order is performed here, but is probably due to mistake in whitening or interleaving
xor_b = (xor_b & 0xCC) >> 2 | (xor_b & 0x33) << 2;
xor_b = (xor_b & 0xAA) >> 1 | (xor_b & 0x55) << 1;
d_words_dewhitened.push_back(xor_b);
}
//print_vector(d_words_dewhitened, "W", sizeof(uint8_t)*8);
print_vector(d_debug, d_words_dewhitened, "W", sizeof(uint8_t)*8);
d_words_deshuffled.clear();
}
@ -526,9 +536,13 @@ namespace gr {
fec_scheme fs = LIQUID_FEC_HAMMING84;
if(d_cr == 4) {
fs = LIQUID_FEC_HAMMING84;
hamming_decode_soft(&d_words_dewhitened[0], d_words_dewhitened.size(), out_data);
d_words_dewhitened.clear();
return;
} else if(d_cr == 3) {
fs = LIQUID_FEC_HAMMING84;
hamming_decode_soft(&d_words_dewhitened[0], d_words_dewhitened.size(), out_data);
d_words_dewhitened.clear();
return;
} else if(d_cr == 2) {
fec_extract_data_only(&d_words_dewhitened[0], d_words_dewhitened.size(), data_indices, 4, out_data);
d_words_dewhitened.clear();
@ -539,13 +553,15 @@ namespace gr {
return;
}
/*fs = LIQUID_FEC_HAMMING84;
unsigned int k = fec_get_enc_msg_length(fs, n);
fec hamming = fec_create(fs, NULL);
fec_decode(hamming, n, &d_words_dewhitened[0], out_data);
d_words_dewhitened.clear();
fec_destroy(hamming);
fec_destroy(hamming);*/
}
void decoder_impl::nibble_reverse(uint8_t* out_data, int len) {
@ -685,7 +701,7 @@ namespace gr {
double c = detect_downchirp(&input[0], d_samples_per_symbol);
d_debug << "Cd: " << c << std::endl;
if(c > 0.96f) {
if(c > 0.98f) {
d_debug << "SYNC: " << c << std::endl;
// Debug stuff
samples_to_file("/tmp/sync", &input[0], d_samples_per_symbol, sizeof(gr_complex));
@ -716,7 +732,8 @@ namespace gr {
d_payload_length = 3; // TODO: A bit messy. I think it's better to make an internal decoded std::vector
decode(decoded, true);
nibble_reverse(decoded, 1); // TODO: Why? Is the radio chip CPU 16-bit?
if(d_sf % 2 == 1) // TODO: Why?
nibble_reverse(decoded, 1);
d_payload_length = decoded[0];
d_cr = lookup_cr(decoded[1]);

Wyświetl plik

@ -100,7 +100,7 @@ namespace gr {
bool demodulate(gr_complex* samples, bool is_header);
void deinterleave(int ppm);
int decode(uint8_t* out_data, bool is_header);
void deshuffle(const uint8_t* shuffle_pattern);
void deshuffle(const uint8_t* shuffle_pattern, bool is_header);
void dewhiten(const uint8_t* prng);
void hamming_decode(uint8_t* out_data);
void nibble_reverse(uint8_t* out_data, int len);

Wyświetl plik

@ -7,20 +7,28 @@ namespace gr {
0x22, 0x11, 0x01, 0x00, 0x00
};
const uint8_t prng_payload_cr8[] = {
0xdf, 0xef, 0xb0, 0xf7, 0x9e, 0xfd, 0xc6, 0xdf, 0x10, 0xfb, 0x43, 0x34, 0xa8, 0x5f, 0xf2, 0x97, 0x62, 0x8, 0xf8, 0x49, 0xbe, 0x8a, 0xa4, 0xd6, 0x16, 0xe6, 0x85, 0x39, 0x6b, 0xef, 0xe5, 0xbc, 0xb3, 0x1c, 0x14, 0xa7, 0x3d, 0x4f, 0x91, 0x61, 0x85, 0x72, 0x20, 0x45, 0x4, 0x25, 0x80, 0x1b, 0x41, 0xa7, 0x5b, 0x4, 0xa2, 0x80, 0x9b, 0x41, 0xa7, 0x10, 0x4f, 0x43, 0x61, 0xa8, 0x39, 0xb9, 0xa4, 0x83, 0x16, 0xcb, 0x85, 0xa0, 0x6b, 0x68, 0xae, 0xbc, 0x19, 0x1c, 0x8d, 0xa7, 0xba, 0x4f, 0xda, 0x2a, 0x64, 0xd8, 0x58, 0xdc, 0xb0, 0xa2, 0x9e, 0xd0, 0xc6, 0x46, 0x10, 0x7c, 0x8, 0x34, 0x2, 0x5f, 0x6b, 0x97, 0xe5, 0x8, 0xb3, 0x2, 0x5f, 0x20, 0xdc, 0x4f, 0xa2, 0x61, 0x9b, 0x72, 0xec, 0xe, 0xae, 0xc4, 0x19, 0xa8, 0x8d, 0xb9, 0xf1, 0xc8, 0x3b, 0x2a, 0x57, 0xd8, 0x46, 0xdc, 0x7c, 0xe9, 0x34, 0x31, 0x5f, 0x75, 0xdc, 0x62, 0xa2, 0xf8, 0x9b, 0xf5, 0xa7, 0xe, 0x4, 0xc0, 0x80, 0xa8, 0xa, 0xb9, 0xba, 0xa3, 0xda, 0x80, 0x2f, 0x43, 0xf2, 0x79, 0x62, 0xa2, 0xb3, 0xd0, 0x14, 0xd, 0x76, 0x96, 0x2b, 0xee, 0xd7, 0x72, 0xd, 0x44, 0x96, 0x7e, 0xee, 0xb1, 0x70, 0x77, 0x2f, 0x39, 0xc0, 0x52, 0x28, 0x27, 0xb0, 0x3, 0x73, 0x16, 0xbf, 0xce, 0xdf, 0xc9, 0xb7, 0xd6, 0x18, 0xe6, 0xcd, 0x7a, 0x43, 0x4f, 0x7c, 0xbf, 0x7b, 0xa, 0xbe, 0x6b, 0xc5, 0xe5, 0x5d, 0xe4, 0xe4, 0xbc, 0x5b, 0xce, 0xd1, 0xa8, 0xe6, 0x57, 0x3b, 0x4, 0xcf, 0xa6, 0xbc, 0xd9, 0x57, 0x27, 0x45, 0x69, 0xe6, 0xf7, 0xe2, 0x36, 0x3b, 0x77, 0xe5, 0x89, 0x5d, 0x46, 0x2f, 0x2f, 0x79, 0x49, 0x83, 0xb8, 0xdb, 0x5f, 0xe9, 0x5, 0x88, 0x1d, 0x9b, 0x7, 0x2, 0x8, 0x2b, 0x99, 0xf5, 0x91, 0xbb, 0x85, 0x90, 0x60, 0x76, 0x7f, 0x3a, 0x61, 0x1c, 0x7c, 0xee, 0xc7, 0x5f, 0x6a, 0x41, 0x31, 0x39, 0xfe, 0xcf, 0x82, 0xb8, 0xdb, 0x14, 0xa2, 0xac, 0x68, 0xd5, 0xf6, 0xfc, 0x3e, 0xf7, 0x7e, 0x2c, 0xd8, 0xc4, 0x6d, 0xe2, 0xb9, 0x12, 0xa4, 0x3a, 0x2, 0x7, 0x4e, 0x40, 0x2, 0xba, 0x7, 0xde, 0x9e, 0x6c, 0xc6, 0x52, 0x79, 0x51, 0xb2, 0xad, 0x5c, 0xd8, 0x6, 0xdc, 0x27, 0x83, 0xd5, 0x1f, 0x66, 0xf6, 0x89, 0x4f, 0xc4, 0x26, 0x88, 0x11, 0xb8, 0x3d, 0xa3, 0x95, 0xdb, 0x6, 0xe9, 0xc9, 0xe2, 0xd6, 0x35, 0xa9, 0x13, 0x93, 0xad, 0x1d, 0xae, 0x93, 0x42, 0x4e, 0x60, 0xc1, 0x83, 0x6c, 0x1, 0x3c, 0x9b, 0x96, 0xad, 0x76, 0xc5, 0x70, 0xe0, 0xb6, 0x73, 0x36, 0x45, 0x72, 0x4a, 0xb3, 0x7a, 0x57, 0xd7, 0xfc, 0x51, 0xf9, 0xe6, 0xfe, 0x7a, 0x9e, 0xe, 0xb0, 0xf4, 0xd9, 0xe3, 0xa5, 0x58, 0x28, 0xcb, 0xf2, 0x3c, 0xfd, 0x96, 0x9f, 0x77, 0x80, 0x70, 0xd5, 0x79, 0x66, 0x9e, 0x83, 0xeb, 0xe0, 0x34, 0xe3, 0x94, 0x53, 0x1e, 0xa, 0x91, 0x44, 0xca, 0x20, 0x0, 0x23, 0x17, 0x4d, 0x92, 0x2f, 0x8f, 0x32, 0xd1, 0x28, 0x3f, 0x9, 0x5f, 0xc4, 0x4d, 0x5a, 0xc6, 0xe9, 0x8d, 0xbd, 0xda, 0x3e, 0xbd, 0x92, 0x47, 0xc0, 0x63, 0x41, 0x53, 0x78, 0xa, 0xe9, 0x8f, 0x7e, 0x41, 0x96, 0x30, 0x41, 0x6, 0xad, 0x6b, 0x93, 0x18, 0x1d, 0xb1, 0x4e, 0xd5, 0x2f, 0x66, 0xf2, 0x82, 0x72, 0x1, 0xf1, 0xd0, 0x3c, 0xc, 0xce, 0x84, 0xb8, 0xe6, 0x9c, 0x31, 0xed, 0x8f, 0xac, 0xf3, 0x4a, 0xb6, 0xec, 0x3c, 0xa9, 0xd9, 0xcb, 0x2a, 0x8a, 0x93, 0x2a, 0x1d, 0x8e, 0x95, 0x9, 0xd, 0x8f, 0x20, 0xf1, 0x3e, 0x74, 0x22, 0xfd, 0x5a, 0xdf, 0xbd, 0xfb, 0xf9, 0x77, 0xfe, 0x43, 0x22, 0x10, 0xc, 0xe1, 0xe6, 0x53, 0x62
};
const uint8_t prng_payload_cr7[] = {
0xde, 0xee, 0xb0, 0xf6, 0x9e, 0xfc, 0xc6, 0xde, 0x10, 0xfa, 0x42, 0x34, 0xa8, 0x5e, 0xf2, 0x96, 0x62, 0x8, 0xf8, 0x48, 0xbe, 0x8a, 0xa4, 0xd6, 0x16, 0xe6, 0x84, 0x38, 0x6a, 0xee, 0xe4, 0xbc, 0xb2, 0x1c, 0x14, 0xa6, 0x3c, 0x4e, 0x90, 0x60, 0x84, 0x72, 0x20, 0x44, 0x4, 0x24, 0x80, 0x9a, 0x40, 0xa6, 0x5a, 0x4, 0xa2, 0x80, 0x9a, 0x40, 0xa6, 0x10, 0x4e, 0x42, 0x60, 0xa8, 0x38, 0xb8, 0xa4, 0x82, 0x16, 0xca, 0x84, 0xa0, 0x6a, 0x68, 0xae, 0xbc, 0x18, 0x1c, 0x8c, 0xa6, 0xba, 0x4e, 0xda, 0x2a, 0x64, 0xd8, 0x58, 0xdc, 0xb0, 0xa2, 0x9e, 0xd0, 0xc6, 0x46, 0x10, 0x7c, 0x8, 0xb4, 0x2, 0x5e, 0x6a, 0x96, 0xe4, 0x8, 0xb2, 0x2, 0x5e, 0x20, 0xdc, 0x4e, 0xa2, 0x60, 0x9a, 0x72, 0xec, 0xe, 0xae, 0xc4, 0x18, 0xa8, 0x8c, 0xb8, 0xf0, 0xc8, 0x3a, 0x2a, 0x56, 0xd8, 0x46, 0xdc, 0x7c, 0xe8, 0x34, 0x30, 0x5e, 0x74, 0xdc, 0x62, 0xa2, 0xf8, 0x9a, 0xf4, 0xa6, 0x1e, 0x4, 0xc4, 0x80, 0xa8, 0xa, 0xb8, 0xba, 0x82, 0xda, 0x80, 0x2e, 0x40, 0xf2, 0x5a, 0x62, 0xa2, 0xb2, 0xd0, 0x14, 0xc, 0x76, 0xd6, 0x3a, 0xe6, 0x56, 0x72, 0xc, 0x44, 0xd6, 0x6e, 0xe6, 0x30, 0x72, 0x74, 0xe, 0x28, 0xc4, 0x52, 0xa8, 0x26, 0xf2, 0x22, 0x62, 0x16, 0xb2, 0xce, 0x5e, 0x8a, 0x96, 0xd6, 0x8, 0xe6, 0x48, 0x72, 0xc0, 0xe, 0x7c, 0x8e, 0x7e, 0x2, 0xbe, 0x6a, 0xa4, 0xe4, 0x5c, 0xf8, 0x64, 0xbe, 0x12, 0xee, 0x50, 0xbc, 0xe6, 0x56, 0x38, 0x46, 0xee, 0x36, 0xbc, 0xd4, 0x56, 0x26, 0xc, 0x68, 0xd6, 0xf6, 0xe6, 0xb6, 0x38, 0x74, 0xa4, 0x28, 0x5c, 0x52, 0x2e, 0x26, 0xb8, 0x68, 0x82, 0xbc, 0xca, 0x56, 0xea, 0x4c, 0x88, 0x9c, 0x8e, 0x6, 0x2, 0xa, 0x6a, 0xba, 0xe4, 0x90, 0xb2, 0x84, 0x14, 0x20, 0x76, 0x4e, 0x3a, 0x60, 0x9c, 0x72, 0xa6, 0x44, 0x4e, 0x6e, 0x60, 0x30, 0x38, 0xbe, 0xee, 0x82, 0xb8, 0xca, 0x1c, 0xa2, 0xec, 0x68, 0xd4, 0xf6, 0xfc, 0x3e, 0xf6, 0x7e, 0x2c, 0xd8, 0xc4, 0x6c, 0xe2, 0xb8
};
const uint8_t prng_payload_cr6[] = {
const uint8_t prng_payload_sf7[] = {
0xdc, 0xec, 0xb0, 0xf4, 0x9c, 0xfc, 0xc4, 0xdc, 0x10, 0xf8, 0x40, 0x34, 0xa8, 0x5c, 0xf0, 0x94, 0x60, 0x8, 0xf8, 0x48, 0xbc, 0x88, 0xa4, 0xd4, 0x14, 0xe4, 0x84, 0x38, 0x68, 0xec, 0xe4, 0xbc, 0xb0, 0x1c, 0x14, 0xa4, 0x3c, 0x4c, 0x90, 0x60, 0x84, 0x70, 0x20, 0x44, 0x4, 0x24, 0x80, 0x98, 0x40, 0xa4, 0x58, 0x4, 0xa0, 0x80, 0x98, 0x40, 0xa4, 0x10, 0x4c, 0x40, 0x60, 0xa8, 0x38, 0xb8, 0xa4, 0x80, 0x14, 0xc8, 0x84, 0xa0, 0x68, 0x68, 0xac, 0xbc, 0x18, 0x1c, 0x8c, 0xa4, 0xb8, 0x4c, 0xd8, 0x28, 0x64, 0xd8, 0x58, 0xdc, 0xb0, 0xa0, 0x9c, 0xd0, 0xc4, 0x44, 0x10, 0x7c, 0x8, 0xb4, 0x0, 0x5c, 0x68, 0x94, 0xe4, 0x8, 0xb0, 0x0, 0x5c, 0x20, 0xdc, 0x4c, 0xa0, 0x60, 0x98, 0x70, 0xec, 0xc, 0xac, 0xc4, 0x18, 0xa8, 0x8c, 0xb8, 0xf0, 0xc8, 0x38, 0x28, 0x54, 0xd8, 0x44, 0xdc, 0x7c, 0xe8, 0x34, 0x30, 0x5c, 0x74, 0xdc, 0x60, 0xa0, 0xf8, 0x98, 0xf4, 0xa4, 0x1c, 0x4, 0xc4, 0x80, 0xa8, 0x8, 0xb8, 0xb8, 0x80, 0xd8, 0x80, 0x2c, 0x40, 0xf0, 0x58, 0x60, 0xa0, 0xb0, 0xd0, 0x14, 0xc, 0x74, 0xd4, 0x38, 0xe4, 0x54, 0x70, 0xc, 0x44, 0xd4, 0x6c, 0xe4, 0x30, 0x70, 0x74, 0xc, 0x28, 0xc4, 0x50, 0xa8, 0x24, 0xf0, 0x20, 0x60, 0x14, 0xb0, 0xcc, 0x5c, 0x88, 0x94, 0xd4, 0x8, 0xe4, 0x48, 0x70, 0xc0, 0xc, 0x7c, 0x8c, 0x7c, 0x0, 0xbc, 0x68, 0xa4, 0xe4, 0x5c, 0xf8, 0x64, 0xbc, 0x10, 0xec, 0x50, 0xbc, 0xe4, 0x54, 0x38, 0x44, 0xec, 0x34, 0xbc, 0xd4, 0x54, 0x24, 0xc, 0x68, 0xd4, 0xf4, 0xe4, 0xb4, 0x38, 0x74, 0xa4, 0x28, 0x5c, 0x50, 0x2c, 0x24, 0xb8, 0x68, 0x80, 0xbc, 0xc8, 0x54, 0xe8, 0xc, 0x88, 0x9c, 0x8c, 0x4, 0x0, 0x8, 0x68, 0xb8, 0xe4, 0x90, 0xb0, 0x84, 0x14, 0x20, 0x74, 0x4c, 0x38, 0x60, 0x1c, 0x70, 0xa4, 0x44, 0x4c, 0x6c, 0x60, 0x30, 0x38, 0x3c, 0xec, 0x80, 0xbc, 0xc8, 0x1c, 0xa0, 0xec, 0x68, 0xe4, 0xf4, 0xf8, 0xb4, 0xf4, 0x3c, 0xc, 0xc8, 0xc4, 0x60, 0xe0, 0x38, 0x10, 0xa4, 0x18, 0x14, 0x4, 0xcc, 0x8, 0xc0, 0xb8, 0x34, 0xd8, 0x9c, 0x64, 0xc4, 0x10, 0x58, 0x50, 0xa0, 0xac, 0xd0, 0xd8, 0x44, 0xdc, 0x34, 0xa0, 0xd4, 0x98, 0x6c, 0xa4, 0x88, 0x4c, 0xc4, 0x28, 0xa8, 0x90, 0xb8, 0x3c, 0x80, 0x90, 0xc8, 0xcc, 0xe8, 0x88, 0xc0, 0xd4, 0x24, 0xac, 0x98, 0x90
};
const uint8_t prng_payload_cr5[] = {
0x54, 0x64, 0x38, 0x7c, 0x14, 0x74, 0x4c, 0x54, 0x10, 0x70, 0x40, 0x3c, 0x28, 0x54, 0x70, 0x1c, 0x68, 0x8, 0x78, 0x48, 0x34, 0x8, 0x2c, 0x54, 0x1c, 0x6c, 0xc, 0x38, 0x68, 0x64, 0x64, 0x34, 0x30, 0x14, 0x1c, 0x2c, 0x34, 0x4c, 0x10, 0x60, 0xc, 0x70, 0x20, 0x4c, 0x4, 0x2c, 0x0, 0x18, 0x40, 0x2c, 0x58, 0x4, 0x20, 0x0, 0x18, 0x40, 0x2c, 0x10, 0x4c, 0x40, 0x60, 0x28, 0x38, 0x38, 0x2c, 0x8, 0x1c, 0x48, 0xc, 0x20, 0x68, 0x68, 0x2c, 0x34, 0x18, 0x14, 0x4, 0x2c, 0x38, 0x4c, 0x58, 0x28, 0x6c, 0x58, 0x58, 0x54, 0x38, 0x20, 0x14, 0x50, 0x4c, 0x4c, 0x10, 0x7c, 0x8, 0x3c, 0x0, 0x54, 0x68, 0x1c, 0x64, 0x8, 0x30, 0x0, 0x54, 0x20, 0x54, 0x4c, 0x20, 0x60, 0x18, 0x70, 0x64, 0x4, 0x2c, 0x4c, 0x18, 0x28, 0x4, 0x38, 0x70, 0x40, 0x38, 0x28, 0x5c, 0x58, 0x4c, 0x54, 0x7c, 0x68, 0x3c, 0x30, 0x54, 0x7c, 0x54, 0x68, 0x20, 0x78, 0x18, 0x7c, 0x2c, 0x14, 0x4, 0x4c, 0x0, 0x28, 0x8, 0x38, 0x38, 0x8, 0x58, 0x0, 0x24, 0x40, 0x70, 0x58, 0x68, 0x20, 0x30, 0x50, 0x1c, 0x4, 0x7c, 0x54, 0x38, 0x6c, 0x5c, 0x70, 0x4, 0x4c, 0x54, 0x64, 0x6c, 0x30, 0x70, 0x7c, 0x4, 0x20, 0x4c, 0x50, 0x28, 0x2c, 0x70, 0x20, 0x68, 0x1c, 0x30, 0x44, 0x54, 0x8, 0x1c, 0x54, 0x8, 0x6c, 0x48, 0x70, 0x40, 0x4, 0x7c, 0x4, 0x74, 0x0, 0x34, 0x68, 0x2c, 0x64, 0x54, 0x78, 0x6c, 0x34, 0x10, 0x64, 0x58, 0x34, 0x6c, 0x5c, 0x38, 0x4c, 0x64, 0x34, 0x34, 0x5c, 0x5c, 0x2c, 0x4, 0x68, 0x54, 0x7c, 0x6c, 0x3c, 0x38, 0x7c, 0x2c, 0x20, 0x54, 0x50, 0x24, 0x2c, 0x38, 0x68, 0x8, 0x34, 0x48, 0x5c, 0x68, 0x4, 0x8, 0x1c, 0x4, 0xc, 0x0, 0x8, 0x68, 0x38, 0x64, 0x10, 0x30, 0xc, 0x1c, 0x20, 0x7c, 0x4c, 0x38, 0x60, 0x14, 0x70, 0x2c, 0x4c, 0x4c, 0x64, 0x60, 0x30, 0x38, 0x34, 0x64, 0x8, 0x34, 0x48, 0x14, 0x20, 0x64, 0x68, 0x64, 0x7c, 0x78, 0x3c, 0x7c, 0x34, 0x4, 0x40, 0x4c, 0x60, 0x60, 0x38, 0x10, 0x2c, 0x10, 0x1c, 0xc, 0x44, 0x8, 0x40, 0x38, 0x34, 0x58, 0x14, 0x6c, 0x4c, 0x10, 0x58, 0x58, 0x20, 0x24, 0x50, 0x58, 0x4c, 0x54, 0x34, 0x20, 0x5c, 0x18, 0x64, 0x2c, 0x8, 0x4c, 0x4c, 0x28, 0x28, 0x10, 0x38, 0x34, 0x8, 0x10, 0x48, 0x44, 0x68, 0x8, 0x40, 0x54, 0x2c, 0x24, 0x18, 0x10, 0x64, 0x34, 0x2c, 0x10, 0x50, 0x44, 0x64, 0x40, 0x40, 0x7c, 0x2c, 0x3c, 0x18, 0x1c, 0x64, 0x7c, 0x64, 0x70, 0x78, 0x3c, 0x7c, 0x3c, 0x4c, 0x68, 0x44, 0x38, 0x78, 0x54, 0x5c, 0x74, 0x58, 0x78, 0x6c, 0x74, 0x70, 0x14, 0x4, 0x38, 0x7c, 0x50, 0x60, 0x2c, 0x58, 0x28, 0x40, 0x78, 0x3c, 0x7c, 0x1c, 0x14, 0x7c, 0x8, 0x70, 0x5c, 0x78, 0x64, 0x14, 0x8, 0x60, 0x68, 0x34, 0x60, 0x1c, 0x50, 0x14, 0x0, 0x10, 0x4c, 0x40, 0x20
const uint8_t prng_payload_sf8[] = {
0xdf, 0xa4, 0xfb, 0x16, 0x7f, 0x85, 0xfe, 0x40, 0xdf, 0x5b, 0xb0, 0xa2, 0x9e, 0xd0, 0x86, 0x26, 0x20, 0x68, 0x4f, 0xf7, 0x2a, 0xb6, 0xd3, 0x5e, 0x46, 0x97, 0x7c, 0x43, 0x7f, 0xe3, 0xb5, 0x73, 0x3e, 0x45, 0x83, 0x25, 0xcb, 0x9b, 0xe0, 0xc7, 0x13, 0x10, 0x51, 0x8, 0xad, 0x2, 0x98, 0x40, 0xa7, 0x5b, 0x4, 0xa2, 0x80, 0x9b, 0x1, 0xc7, 0x20, 0x5b, 0x4f, 0xe9, 0x2a, 0x7a, 0x98, 0xf4, 0xa7, 0xe, 0x4f, 0x8f, 0x61, 0x49, 0x79, 0xea, 0x94, 0x89, 0x1a, 0xc4, 0x7, 0xa8, 0x4a, 0x92, 0x8a, 0x76, 0x9d, 0x70, 0x4c, 0xb6, 0xab, 0x5e, 0xf2, 0x97, 0x62, 0x8, 0xf8, 0x2, 0xb5, 0x40, 0x3e, 0x5b, 0x83, 0xe9, 0x80, 0x31, 0x1, 0x5e, 0x20, 0xdc, 0x4f, 0xa2, 0x61, 0x9b, 0x32, 0x8c, 0x3e, 0xba, 0xc8, 0x91, 0x2a, 0xce, 0x98, 0xa1, 0xec, 0x23, 0xae, 0x5d, 0x19, 0x64, 0xcd, 0x38, 0xc1, 0xe4, 0x37, 0x12, 0xdd, 0xce, 0xe7, 0xe9, 0x58, 0xc9, 0xb1, 0xbf, 0x98, 0xa, 0xcd, 0xc0, 0x8b, 0x7b, 0xdd, 0xb2, 0xf, 0x54, 0x3, 0x6d, 0x60, 0xe2, 0x4f, 0x6e, 0x2e, 0xb9, 0xc3, 0x16, 0x5, 0x76, 0xb6, 0x2f, 0xe6, 0xd7, 0x30, 0x6c, 0x37, 0xc3, 0x62, 0x4a, 0xbb, 0xa1, 0x54, 0x5e, 0x4d, 0xfd, 0xc6, 0xa2, 0xee, 0xd4, 0xb2, 0x24, 0x3e, 0x23, 0xe9, 0x56, 0x3e, 0x8d, 0x53, 0x42, 0x6, 0x7b, 0x37, 0xf9, 0x9e, 0xf6, 0x86, 0xbc, 0x20, 0xcf, 0xe, 0xbc, 0x7d, 0xd7, 0x7b, 0x26, 0xdf, 0x61, 0xcb, 0x5d, 0x38, 0xe4, 0x54, 0x39, 0xe, 0xef, 0x87, 0xb8, 0xd5, 0x57, 0x67, 0x6e, 0xd8, 0x82, 0xeb, 0x4b, 0x3c, 0x7a, 0x56, 0xf4, 0xd, 0x45, 0x96, 0x31, 0xc6, 0x1b, 0x73, 0xc6, 0x95, 0x7b, 0x11, 0xb2, 0xa5, 0x1f, 0x9a, 0xc7, 0xe6, 0x30, 0x4f, 0x47, 0x2a, 0xeb, 0x1a, 0x63, 0xa7, 0x65, 0x54, 0x6e, 0xcf, 0x39, 0xe2, 0xdf, 0x5b, 0xb6, 0x51, 0x57, 0xe6, 0xe3, 0xb0, 0x38, 0x3e, 0xcf, 0xc2, 0xbc, 0xd7, 0x9c, 0xe2, 0x8c, 0x58, 0xb1, 0xca, 0x74, 0x3c, 0xb6, 0x9d, 0x5e, 0xae, 0xfc, 0xe5, 0xe9, 0xf8, 0xa9, 0xb5, 0x5b, 0x3e, 0xb7, 0xd9, 0x7, 0x61, 0x28, 0x3a, 0x90, 0x7e, 0x76, 0xb3, 0x3f, 0xcb, 0x5f, 0xab, 0xee, 0xf3, 0xeb, 0x72, 0xc0, 0xb3, 0x28, 0x5c, 0xd9, 0x4d, 0xb6, 0x9d, 0x57, 0x4c, 0xa0, 0x29, 0x92, 0xb9, 0x1d, 0x83, 0x95, 0xd3, 0x8e, 0x2b, 0xe9, 0xf3, 0xa2, 0x29, 0x25, 0x15, 0x40, 0xcf, 0x6d, 0xca, 0x89, 0xd6, 0xd4, 0xa1, 0xc3, 0x51, 0x39, 0x4d, 0x85, 0x9d, 0x49, 0x4c, 0x6c, 0xe2, 0xb8, 0x18, 0xa4, 0x10, 0x4d, 0xd9, 0x64, 0x65, 0x72, 0x50, 0x6e, 0xa0, 0x40, 0xd5, 0x62, 0x67, 0x3b, 0x51, 0x8e, 0x2, 0xb8, 0x70, 0xd7, 0xe2, 0xa7, 0x9a, 0x48, 0xab, 0xc2, 0x38, 0x7d, 0x5e, 0xbe, 0x6, 0x86, 0x4c, 0x9, 0x72, 0xaf, 0xf4, 0x58, 0x9e, 0x3c, 0x80, 0xed, 0xdd, 0xa5, 0x2e, 0x55, 0xf8, 0xbc, 0xd8, 0xed, 0x4d, 0xb9, 0xa0, 0x16, 0xfe, 0x5f, 0xf9, 0xde, 0x79, 0xa7, 0x34, 0xd8, 0x37, 0xf6, 0xb9, 0x77, 0x5a, 0x6b, 0x2e, 0x76, 0xf8, 0x36, 0xb5, 0x8b, 0xc3, 0xc2, 0xe2, 0xc1, 0x53, 0x38, 0xa, 0xfd, 0x2b, 0xf2, 0x83, 0xf5, 0x64, 0x25, 0x5e, 0x33, 0x49, 0x50, 0xfb, 0x64, 0xd5, 0xa2, 0x41, 0x21, 0x85, 0x5c, 0x41, 0x25, 0x4d, 0x9, 0xe6, 0xe3, 0xa5, 0x79, 0xd9, 0x77, 0x6, 0x6e, 0x4c, 0xc0, 0x77, 0x35, 0xfc, 0x11, 0xd5, 0x5d, 0xa, 0x97, 0x50, 0x5, 0xa9, 0xe9, 0xb3, 0x7b, 0x79, 0x96, 0x15, 0x13, 0x4, 0x8f, 0x62, 0x91, 0x5e, 0x74, 0x12, 0x75, 0x9e, 0x3e, 0xad, 0x4b, 0x97, 0xe3, 0xf0, 0x8a, 0x3, 0x41, 0x60, 0xd1, 0xd2, 0x4b, 0xbb, 0xda, 0x3f, 0x3d
};
const uint8_t prng_payload_sf9[] = {
0x94, 0xef, 0x1a, 0xf7, 0x7, 0xfd, 0x1, 0xff, 0xb, 0x94, 0xba, 0x1a, 0xda, 0x7, 0x64, 0x1, 0x78, 0xb, 0xdf, 0xba, 0xb0, 0xda, 0x9e, 0x64, 0x86, 0x78, 0xb, 0xdf, 0xf1, 0xb0, 0x3b, 0x9e, 0x57, 0x86, 0x2d, 0xb, 0xb9, 0xf1, 0x83, 0x3b, 0x80, 0x57, 0x1, 0x2d, 0x40, 0xb9, 0x10, 0x83, 0x43, 0x80, 0xa8, 0x1, 0x99, 0x40, 0xa7, 0x10, 0x4f, 0x43, 0x61, 0xa8, 0x79, 0x99, 0xf4, 0xa7, 0xe, 0x5f, 0x8f, 0x6d, 0xe9, 0x79, 0xab, 0xf6, 0xb9, 0x2e, 0xd8, 0xcf, 0x2e, 0x41, 0xd1, 0x2b, 0x26, 0xb9, 0x68, 0xb8, 0xb8, 0x22, 0x1c, 0xd1, 0x7, 0x27, 0x60, 0x48, 0x14, 0xb8, 0x88, 0x9c, 0x48, 0x86, 0xa1, 0x60, 0x3, 0x4, 0x16, 0x94, 0x4e, 0x42, 0xa9, 0xa1, 0xf9, 0x3, 0xc8, 0x16, 0x3e, 0x46, 0x98, 0xab, 0x8e, 0xf9, 0xf1, 0xe8, 0x3b, 0x32, 0x57, 0x9e, 0xe7, 0x8c, 0x18, 0xf1, 0x80, 0x3f, 0x9e, 0x5f, 0xcd, 0xe7, 0xe8, 0x58, 0xe9, 0xb1, 0x9f, 0x92, 0x82, 0xcf, 0x0, 0xea, 0x2b, 0x88, 0xbe, 0xaf, 0x56, 0x82, 0x2e, 0x8, 0x92, 0x6b, 0x17, 0xae, 0x3b, 0x4a, 0xd7, 0x2a, 0x66, 0x92, 0x13, 0x76, 0x21, 0x3b, 0xa5, 0xd3, 0xd3, 0x65, 0x26, 0x13, 0x2, 0x41, 0x52, 0xad, 0x46, 0xd3, 0xa8, 0x26, 0xb2, 0x23, 0x52, 0x12, 0xb3, 0xce, 0x97, 0xa9, 0xc7, 0xb3, 0x10, 0x62, 0x67, 0xbb, 0x73, 0x1f, 0x7a, 0xc7, 0x9d, 0x30, 0xeb, 0x67, 0x38, 0x73, 0xd6, 0x79, 0x2f, 0x9f, 0x3, 0xeb, 0x39, 0x2c, 0xe8, 0xd6, 0x7b, 0x27, 0x9d, 0x43, 0x80, 0x59, 0xc9, 0xec, 0xae, 0x79, 0x93, 0x9f, 0x16, 0x80, 0x74, 0xc9, 0x3e, 0xae, 0x56, 0x93, 0x4d, 0x57, 0xcd, 0x64, 0x2b, 0x3e, 0xc8, 0x56, 0xea, 0x6d, 0xa8, 0x8d, 0x9b, 0xf, 0x86, 0xc8, 0x2, 0xe8, 0x80, 0xe9, 0x27, 0xbb, 0xdd, 0x86, 0xe5, 0x4a, 0x79, 0x80, 0x2e, 0x7, 0x9b, 0xd9, 0x89, 0xed, 0xe2, 0x73, 0x18, 0x2e, 0xe9, 0xeb, 0x38, 0xd9, 0x95, 0xe0, 0x8d, 0x98, 0xd1, 0x8a, 0x74, 0x2c, 0x32, 0x1d, 0x17, 0x8e, 0x2d, 0x91, 0xf5, 0x44, 0xbf, 0x36, 0x1d, 0x15, 0xc7, 0x2d, 0x7b, 0xb5, 0x96, 0xbb, 0x50, 0x1d, 0x6b, 0xc5, 0x53, 0x3b, 0x41, 0xb6, 0x85, 0x54, 0x1a, 0x6d, 0x8d, 0x53, 0xdb, 0x41, 0x85, 0xa5, 0x29, 0x9a, 0xca, 0x8e, 0xca, 0xda, 0xc6, 0x95, 0xb0, 0x25, 0x9a, 0xc0, 0x8c, 0xca, 0x9a, 0xe6, 0x8a, 0xa1, 0x27, 0x18, 0xc8, 0x8d, 0x5, 0xfb, 0x8d, 0xca, 0x40, 0xa7, 0x40, 0x51, 0x29, 0x4d, 0xc5, 0xbd, 0x7d, 0x1c, 0xe0, 0x60, 0xfb, 0x31, 0x94, 0x44, 0x71, 0x7d, 0xfe, 0xe8, 0xb0, 0x7a, 0x55, 0xd7, 0xbc, 0x21, 0xfd, 0xda, 0xf6, 0xb8, 0xfc, 0xdf, 0xd4, 0x9c, 0x21, 0xfc, 0xf2, 0x76, 0xf9, 0xfc, 0xbe, 0x17, 0xaf, 0x41, 0xe3, 0xca, 0xbe, 0x6f, 0x5f, 0xbf, 0xc, 0x87, 0x2d, 0xc3, 0x48, 0x36, 0x74, 0x57, 0x73, 0x4d, 0x43, 0xad, 0xd0, 0x18, 0xe3, 0xe0, 0xb0, 0x72, 0x35, 0x6f, 0x49, 0xf4, 0x52, 0x6b, 0xac, 0xb4, 0xd8, 0x35, 0xf6, 0x59, 0x77, 0x5e, 0x7b, 0xae, 0xbc, 0xda, 0x3e, 0xf7, 0x32, 0x53, 0x84, 0xeb, 0x23, 0x30, 0x18, 0x7e, 0xb1, 0x52, 0x64, 0xb4, 0xbe, 0x5, 0x56, 0xa, 0xc, 0x91, 0x76, 0x50, 0xb1, 0x3e, 0x59, 0x57, 0x6f, 0x4d, 0xa3, 0xb6, 0x6e, 0x8d, 0xfe, 0x4b, 0x7e, 0x6e, 0x9e, 0xa2, 0x90, 0x5e, 0xca, 0x72, 0x4d, 0x71, 0xe9, 0xdc, 0x82, 0xd0, 0x15, 0x9a, 0x83, 0x4d, 0x9, 0xeb, 0x20, 0x82, 0x6f, 0x74, 0xe, 0x83, 0x8, 0x8d, 0xb, 0x20, 0xb1, 0x2e, 0x60, 0x1e, 0xf1, 0x10, 0xfd, 0xf, 0x5e, 0xb7, 0x9b, 0x40, 0x94, 0xa, 0x89, 0x2, 0xa0, 0x62, 0x22, 0x94, 0x31, 0xef, 0xb5, 0xcb, 0x4c, 0xbb
};
const uint8_t prng_payload_sf10[] = {
0xdf, 0xe, 0xfb, 0x8f, 0x7f, 0x2, 0xfe, 0x4b, 0xb4, 0xea, 0x3e, 0xc2, 0x83, 0x6e, 0x80, 0x7a, 0x48, 0xfe, 0xaa, 0xf4, 0xf2, 0x4e, 0x62, 0xab, 0xf8, 0xd1, 0xfc, 0xe0, 0xb4, 0x73, 0x7e, 0x65, 0x83, 0x21, 0xcb, 0x93, 0x72, 0x87, 0x32, 0x40, 0x75, 0x50, 0x29, 0x2c, 0x19, 0x9a, 0x84, 0x4a, 0x0, 0xea, 0x30, 0xa9, 0x4, 0x8b, 0x88, 0x49, 0xa, 0xe2, 0x2a, 0x38, 0xb9, 0xa4, 0xa3, 0x16, 0xdf, 0xcd, 0x60, 0x4b, 0x7b, 0xea, 0x94, 0x89, 0x1a, 0xd0, 0x47, 0x28, 0x60, 0xd3, 0xaa, 0x26, 0xb9, 0x68, 0xb8, 0xb8, 0x22, 0x1c, 0xd1, 0x7, 0x67, 0x40, 0x18, 0x10, 0xb0, 0x3c, 0x96, 0xc9, 0xc, 0xe2, 0x1, 0x73, 0x64, 0x2e, 0x34, 0xd0, 0x83, 0x20, 0xe2, 0x18, 0x32, 0x8e, 0x7c, 0x9a, 0xf8, 0xd5, 0x32, 0x46, 0x1e, 0xe0, 0xcd, 0x73, 0xca, 0x25, 0x8d, 0x7a, 0x64, 0xfe, 0x6a, 0xb5, 0x33, 0x5d, 0x35, 0xbd, 0x72, 0x96, 0xf0, 0x1b, 0xbf, 0x2, 0x1c, 0x40, 0xad, 0x30, 0x9e, 0x47, 0x55, 0x30, 0x4, 0xd3, 0x2, 0x6d, 0x62, 0xe2, 0x3f, 0x6a, 0x26, 0xb1, 0x41, 0x54, 0x2c, 0x2e, 0xb2, 0x3, 0x52, 0x19, 0xaf, 0xa7, 0x56, 0xd1, 0xe7, 0x26, 0x13, 0x62, 0x41, 0x6, 0xa5, 0x62, 0x53, 0xbb, 0xed, 0x92, 0x13, 0x17, 0x3a, 0x1b, 0x50, 0x94, 0x29, 0xd, 0xd2, 0x42, 0x6, 0x3b, 0x17, 0xc9, 0xda, 0xea, 0xe, 0x7e, 0x3, 0xbe, 0x2b, 0xe4, 0xa5, 0x69, 0xf4, 0xe8, 0x76, 0xb3, 0xfd, 0x14, 0x94, 0x36, 0x41, 0x64, 0xca, 0xf1, 0x28, 0xb6, 0xd6, 0x15, 0x46, 0x1f, 0x5c, 0x9a, 0x63, 0xcc, 0x3f, 0xfa, 0x54, 0xf4, 0xd, 0x5, 0xf6, 0x21, 0xe2, 0x13, 0xeb, 0x4, 0xb3, 0xa, 0x55, 0xba, 0x29, 0x85, 0x15, 0x8d, 0x8a, 0x82, 0x4a, 0x48, 0x8b, 0x31, 0xfd, 0x2b, 0x23, 0x5f, 0x9d, 0x64, 0x48, 0x73, 0xc9, 0x4e, 0x57, 0xbf, 0xd1, 0x51, 0xe7, 0x67, 0x30, 0x39, 0x3e, 0xaf, 0xe3, 0xac, 0xef, 0x10, 0x70, 0x4e, 0x73, 0xa0, 0xde, 0x28, 0x90, 0xac, 0xba, 0x0, 0x4d, 0x86, 0x62, 0xa1, 0x58, 0x63, 0xd1, 0x26, 0x8a, 0x89, 0x45, 0xc9, 0xe2, 0xea, 0x13, 0x82, 0x7a, 0x5e, 0x3, 0x3d, 0xda, 0xdf, 0xa9, 0x6c, 0xf3, 0xc9, 0x2, 0xf4, 0xa7, 0xa0, 0xd4, 0x1f, 0x26, 0xc7, 0xb8, 0x1b, 0xe8, 0xd2, 0x2e, 0xd4, 0x82, 0x2f, 0x85, 0x59, 0x29, 0x9d, 0xce, 0x96, 0x4e, 0x4c, 0xa4, 0xf, 0x9b, 0x12, 0xec, 0x1d, 0xce, 0xa1, 0x4e, 0x42, 0xaa, 0xeb, 0x50, 0x29, 0x8d, 0xc5, 0xfd, 0x5d, 0x4, 0xec, 0x46, 0x7a, 0x63, 0xf5, 0x94, 0x5, 0x21, 0x5e, 0x8e, 0xb9, 0xe1, 0x9d, 0xb3, 0x8f, 0x35, 0xb1, 0x32, 0x64, 0x97, 0xe1, 0x17, 0x35, 0xcf, 0x1c, 0x82, 0x16, 0x1c, 0x54, 0x7b, 0xed, 0xb3, 0xfd, 0xdd, 0xbf, 0x6, 0xc4, 0x4c, 0x2d, 0x66, 0x27, 0x72, 0x19, 0xfd, 0xc, 0xd5, 0x91, 0x61, 0x4f, 0x93, 0x80, 0x12, 0x4f, 0xc3, 0x20, 0x80, 0x43, 0x67, 0x49, 0xc2, 0xab, 0x6f, 0x5d, 0xf3, 0xef, 0x51, 0xe8, 0x81, 0xfb, 0xb5, 0xc9, 0x51, 0x72, 0x2e, 0x7e, 0xf8, 0x2e, 0xf7, 0xab, 0xd7, 0x86, 0x6a, 0xa3, 0xb1, 0x9, 0x7e, 0x91, 0x52, 0x4, 0x98, 0x2a, 0x8b, 0xd4, 0x48, 0x64, 0x0, 0xe2, 0x4c, 0x41, 0x28, 0x7c, 0xda, 0xac, 0x26, 0x93, 0xb2, 0x14, 0x59, 0x14, 0x5e, 0x69, 0xa, 0x74, 0xd0, 0xf5, 0xe, 0x2c, 0x2c, 0xc0, 0x63, 0x4, 0xf0, 0xd2, 0x36, 0x6c, 0x3c, 0x89, 0x89, 0xab, 0x3a, 0x8e, 0xdd, 0xca, 0xa7, 0xeb, 0xbe, 0xa9, 0xd3, 0xe4, 0x94, 0xe7, 0xe0, 0xf9, 0xb8, 0x3e, 0xf9, 0xe7, 0xac, 0xd3, 0x9, 0x79, 0x61, 0x80, 0x82, 0x41, 0x31, 0x48, 0xa0, 0x50, 0x96, 0x2, 0x26, 0x64, 0x85, 0x16
};
const uint8_t prng_payload_sf11[] = {
0x3e, 0x8f, 0xa3, 0xd3, 0x90, 0x75, 0x4, 0xfe, 0xc1, 0xb5, 0xea, 0x3e, 0xc2, 0xc3, 0x4a, 0x80, 0x6e, 0x2c, 0x7a, 0x59, 0xfe, 0x6a, 0x94, 0x82, 0x2a, 0x7a, 0x47, 0x62, 0x84, 0xf8, 0x42, 0xfd, 0xa0, 0x94, 0x43, 0x4a, 0x39, 0x27, 0x53, 0x4, 0x2c, 0x43, 0x9a, 0x21, 0xe7, 0x61, 0x54, 0x3d, 0xbc, 0xd3, 0x3, 0x2d, 0x9, 0x98, 0xc0, 0xe7, 0x7b, 0x74, 0xf6, 0x98, 0xab, 0xb, 0x99, 0x80, 0x87, 0x47, 0x6b, 0x3b, 0xd5, 0x86, 0xec, 0x87, 0xfb, 0x3, 0xb7, 0x86, 0x5e, 0x6b, 0xb7, 0xd5, 0x47, 0xec, 0xe4, 0xfb, 0x33, 0xb7, 0x98, 0x5e, 0xec, 0xb7, 0xbe, 0x7, 0x3a, 0xec, 0xd3, 0xab, 0xee, 0x9a, 0x38, 0xe4, 0xe4, 0xfe, 0x76, 0xa, 0x99, 0x43, 0x5, 0x64, 0x1, 0x38, 0x63, 0xe4, 0x14, 0x6, 0x9b, 0x99, 0x4a, 0x4f, 0xe1, 0x0, 0x73, 0x62, 0x2e, 0x54, 0xa4, 0x9f, 0xc4, 0xc6, 0xaa, 0x61, 0x99, 0x72, 0xac, 0x4e, 0xce, 0xe0, 0x35, 0x4c, 0x9d, 0xa0, 0x4e, 0x98, 0xa1, 0xad, 0x43, 0xce, 0x59, 0x25, 0x54, 0x5, 0xe4, 0xcf, 0x78, 0xa1, 0x94, 0x43, 0xa, 0x19, 0x10, 0x40, 0x85, 0x66, 0xaa, 0xfb, 0xd9, 0x95, 0xd7, 0x2a, 0x8, 0x4, 0x2, 0x45, 0xc6, 0xa8, 0x68, 0xd9, 0x8a, 0xd7, 0xc7, 0x38, 0xe1, 0x56, 0xa1, 0x82, 0xd0, 0xc8, 0x2e, 0x8a, 0x3, 0xe6, 0x49, 0xe5, 0x58, 0x31, 0xec, 0x51, 0x32, 0x25, 0x35, 0x3, 0x29, 0x19, 0x12, 0x50, 0x9, 0xee, 0xe1, 0x30, 0x72, 0x35, 0xe, 0x29, 0xa0, 0x32, 0xf8, 0x9b, 0x2b, 0xec, 0xd5, 0x72, 0x46, 0x2e, 0x17, 0xb5, 0x8a, 0xd8, 0xd6, 0x25, 0x5, 0xd3, 0x42, 0x46, 0x3b, 0x16, 0xfd, 0xce, 0xfe, 0x16, 0xf7, 0x4, 0xfc, 0x40, 0xdf, 0x3b, 0x90, 0xfd, 0xc9, 0xfe, 0xdb, 0xf9, 0x6d, 0xfe, 0xf0, 0xde, 0x25, 0x90, 0x6e, 0xc9, 0xea, 0xdf, 0xe7, 0xe5, 0xfe, 0x71, 0xd4, 0x65, 0x51, 0x2e, 0xcd, 0xfa, 0x87, 0xfd, 0x58, 0xfc, 0x27, 0xd4, 0x68, 0x51, 0x8c, 0xed, 0xab, 0xa7, 0xd1, 0x50, 0x2e, 0x2f, 0xf9, 0x68, 0xd3, 0x9e, 0xbb, 0xa3, 0xc7, 0xdf, 0x28, 0x2c, 0xd8, 0xe8, 0xf7, 0xd5, 0x68, 0x93, 0xd, 0x41, 0xca, 0xa1, 0x40, 0xd9, 0x13, 0x97, 0x41, 0x28, 0xc2, 0x55, 0x6c, 0xec, 0x38, 0xe2, 0xdf, 0x13, 0xd6, 0x61, 0x73, 0xe2, 0x4f, 0x6c, 0x6c, 0xb0, 0x6b, 0x5e, 0x9f, 0x95, 0xa0, 0x63, 0x86, 0x5f, 0x11, 0x60, 0x4f, 0x71, 0xa0, 0x9e, 0x48, 0xa0, 0xc8, 0xe6, 0x4, 0x15, 0x82, 0x4c, 0x47, 0xa0, 0x82, 0x8, 0x7, 0x98, 0x96, 0x3c, 0x2c, 0x9a, 0xe, 0x4d, 0x4a, 0x8a, 0x9a, 0x27, 0xea, 0xe6, 0x68, 0x18, 0xf4, 0x5, 0xb1, 0xb, 0x34, 0x9a, 0x29, 0xea, 0x71, 0x6c, 0x8d, 0x66, 0x48, 0x38, 0xeb, 0x35, 0xe8, 0x79, 0x9f, 0x9, 0x99, 0x1f, 0xcd, 0x6, 0x29, 0xe9, 0xf2, 0xe9, 0x79, 0x9f, 0xd, 0x9d, 0x9b, 0x4b, 0x5, 0xac, 0xeb, 0x71, 0xa2, 0x19, 0x25, 0x19, 0x90, 0x17, 0x4d, 0x6, 0x2e, 0xeb, 0xf8, 0xe2, 0xba, 0x15, 0x69, 0xb8, 0x67, 0x5d, 0xfa, 0xae, 0xf5, 0xf9, 0x65, 0xf8, 0x3e, 0x39, 0xfe, 0x4b, 0x71, 0xe0, 0xb6, 0xf1, 0x75, 0x65, 0x12, 0x1e, 0xdb, 0xb6, 0xb3, 0xe3, 0x9c, 0xb2, 0xf, 0x75, 0xf0, 0x32, 0x14, 0xdf, 0xad, 0x8f, 0x77, 0x91, 0x37, 0x8f, 0x75, 0xf1, 0x32, 0x4, 0xcc, 0xa5, 0x5e, 0xfe, 0xf0, 0x36, 0xbc, 0x35, 0x8e, 0x42, 0xe8, 0xa4, 0x3, 0xfc, 0xd2, 0x7d, 0xa6, 0xbc, 0xba, 0xcf, 0xc8, 0xb8, 0x15, 0x23, 0x54, 0x58, 0xb3, 0x2c, 0x5f, 0xb2, 0x9c, 0xa8, 0xa9, 0x65, 0x7d, 0x4c, 0x38, 0xb3, 0x54, 0x5b, 0xc, 0xdc, 0xe6, 0xb9, 0xa1, 0x79, 0x10, 0x38, 0x10, 0x57, 0xc4
};
const uint8_t prng_payload_sf12[] = {
0x9f, 0xd7, 0xab, 0x28, 0x73, 0x11, 0xfd, 0xc4, 0xb5, 0xab, 0x1c, 0x92, 0xa7, 0x76, 0x74, 0x54, 0x9f, 0xfd, 0xc3, 0x7f, 0xa9, 0xb5, 0xd2, 0x5e, 0x46, 0xb7, 0x5c, 0x47, 0x7b, 0xf3, 0x7f, 0xed, 0x34, 0x33, 0x1d, 0x15, 0xe7, 0x3d, 0x5f, 0x85, 0x5d, 0x91, 0xea, 0x87, 0xb7, 0x2, 0x55, 0x41, 0x4d, 0x30, 0xfd, 0x1c, 0x1f, 0x91, 0x8f, 0x4c, 0x2, 0xab, 0xa0, 0xd9, 0x24, 0xd7, 0x24, 0x3, 0x97, 0x43, 0x1, 0x62, 0x8a, 0x7b, 0x99, 0xf4, 0xa6, 0x4e, 0x2f, 0x9b, 0x45, 0x4d, 0xe5, 0x6a, 0x71, 0xbb, 0x36, 0xd9, 0x3e, 0x9c, 0xe3, 0xb2, 0x97, 0x24, 0xe1, 0x50, 0x38, 0x6f, 0x9e, 0x38, 0xac, 0x44, 0xae, 0x50, 0x12, 0x19, 0x4b, 0x5, 0x60, 0x1, 0x79, 0x48, 0xd4, 0xf0, 0x5a, 0x37, 0x2f, 0xd7, 0x4f, 0x6d, 0x3, 0x30, 0x1, 0x5e, 0x60, 0xfc, 0x7f, 0xe7, 0x19, 0xb7, 0x4e, 0x13, 0xb0, 0xcd, 0x1e, 0xe8, 0xed, 0xe9, 0x9e, 0xa4, 0x39, 0xeb, 0x57, 0x73, 0x4f, 0x38, 0xaa, 0x15, 0x79, 0x36, 0xf8, 0x44, 0x19, 0x7e, 0xd8, 0x3e, 0x34, 0x1f, 0x57, 0x8d, 0x6, 0xda, 0xc, 0x81, 0x45, 0x4d, 0xb9, 0xc, 0x1c, 0x3, 0xcc, 0xc0, 0x88, 0x5b, 0xed, 0xb2, 0x23, 0x2c, 0x1, 0x5c, 0x92, 0xae, 0x1, 0x93, 0x2b, 0x16, 0x8e, 0x1b, 0x2, 0x2f, 0xf4, 0x1c, 0xab, 0x64, 0xd1, 0x73, 0x6, 0x5, 0x27, 0x5, 0x9, 0xb8, 0x43, 0x9b, 0xe6, 0x63, 0x30, 0x72, 0x75, 0x2e, 0x39, 0xd4, 0x4a, 0xd0, 0x5f, 0x27, 0xef, 0x52, 0x30, 0x26, 0x76, 0x23, 0xf8, 0xf6, 0x5a, 0xc5, 0xbb, 0x27, 0x54, 0x2, 0x65, 0xb, 0x53, 0xb0, 0x3a, 0x14, 0x2b, 0xc1, 0x3, 0xf7, 0x13, 0xfc, 0xc8, 0xf4, 0xc3, 0x65, 0x2c, 0x2a, 0x53, 0x5, 0xfc, 0xa4, 0x7f, 0xdc, 0xb5, 0x27, 0x35, 0x8, 0x42, 0xe3, 0xa7, 0x42, 0xb4, 0x3a, 0xd7, 0xd6, 0x67, 0x6e, 0x18, 0x82, 0xcb, 0x5a, 0x10, 0x7e, 0x80, 0x74, 0xdd, 0xb6, 0xae, 0x14, 0xb0, 0x1d, 0x42, 0xe1, 0xc0, 0x61, 0x7d, 0x98, 0x34, 0xc9, 0x5c, 0xeb, 0xd, 0xa9, 0x9d, 0xdf, 0x7b, 0xbe, 0x92, 0xd, 0xcb, 0x41, 0xa9, 0x20, 0xfb, 0x63, 0xb3, 0x6d, 0xac, 0xe4, 0x46, 0x6b, 0xc2, 0xb1, 0xf0, 0x5f, 0xd3, 0xb7, 0x11, 0x47, 0xfe, 0x93, 0xf2, 0xcb, 0xb3, 0x7a, 0x17, 0xb8, 0xe7, 0xe4, 0x1f, 0x76, 0x2d, 0xa6, 0x67, 0xc4, 0xf5, 0x73, 0xfe, 0x3b, 0x95, 0xc4, 0xa, 0x62, 0x70, 0x2e, 0x48, 0xc6, 0x6d, 0xe3, 0xfb, 0x63, 0x95, 0xe, 0xa, 0xdb, 0x34, 0x1d, 0x48, 0x6, 0x6a, 0x8, 0x32, 0x81, 0x3e, 0x16, 0x83, 0x3b, 0xd7, 0x4f, 0x45, 0x5a, 0x38, 0xa7, 0x52, 0xda, 0x4, 0x9c, 0x47, 0xc2, 0x95, 0x87, 0xc2, 0x53, 0xa7, 0xa0, 0x18, 0x2, 0x6c, 0xba, 0xfe, 0x9e, 0x59, 0xe3, 0x1e, 0x3b, 0x1, 0x1a, 0x42, 0x8f, 0xcb, 0xb8, 0xb6, 0xce, 0xb9, 0x93, 0x22, 0x81, 0x13, 0xc0, 0x4d, 0x68, 0xcb, 0xab, 0xf6, 0xc4, 0xad, 0xff, 0x2f, 0x41, 0x59, 0xea, 0x2c, 0xf1, 0xf8, 0x2d, 0xf8, 0xe, 0x75, 0x1e, 0x51, 0xf4, 0xf3, 0x36, 0xb7, 0x14, 0x35, 0x17, 0x20, 0x3b, 0xa0, 0x24, 0x45, 0x92, 0x2d, 0xce, 0xd6, 0xa0, 0x6, 0x8, 0x7, 0x92, 0xd2, 0x5a, 0x91, 0x20, 0xc7, 0x50, 0xe3, 0xa6, 0x18, 0x48, 0x8b, 0xc2, 0x44, 0x9, 0xac, 0x54, 0x4a, 0x76, 0x67, 0xf7, 0x18, 0x5, 0x8b, 0x27, 0x2b, 0xb3, 0x42, 0x45, 0x70, 0x4f, 0xbe, 0x20, 0x75, 0x22, 0x19, 0x4e, 0x59, 0xb2, 0x37, 0x51, 0x2, 0x60, 0xe2, 0xf2, 0xd3, 0x64, 0x5a, 0x25, 0x4c, 0xc8, 0x52, 0x5d, 0xef, 0x2e, 0x38, 0xda, 0x77, 0xb6, 0x19, 0x37, 0x5e, 0xef, 0x6a, 0x67, 0x26, 0xb2, 0x99, 0x5e
};
}
}

Wyświetl plik

@ -25,20 +25,20 @@ namespace gr {
}
template <typename T>
inline void print_vector(std::vector<T>& v, std::string prefix, int element_len_bits) {
std::cout << prefix << ": ";
inline void print_vector(std::ostream& out, std::vector<T>& v, std::string prefix, int element_len_bits) {
out << prefix << ": ";
for(int i = 0; i < v.size(); i++) {
std::cout << to_bin(v[i], element_len_bits) << ", ";
out << to_bin(v[i], element_len_bits) << ", ";
}
std::cout << std::endl << std::flush;
out << std::endl << std::flush;
}
template <typename T>
inline void print_vector_raw(std::vector<T>& v, int element_len_bits) {
inline void print_vector_raw(std::ostream& out, std::vector<T>& v, int element_len_bits) {
for(int i = 0; i < v.size(); i++) {
std::cout << to_bin(v[i], element_len_bits);
out << to_bin(v[i], element_len_bits);
}
std::cout << std::flush;
out << std::flush;
}
bool check_parity(std::string word, bool even) {
@ -118,7 +118,7 @@ namespace gr {
return pack_byte(p1, bit(v, 0), bit(v, 1), bit(v, 2), p2, bit(v, 3), p3, p4);
}
uint8_t hamming_decode_soft(uint8_t v) {
uint8_t hamming_decode_soft_byte(uint8_t v) {
// Precalculation
// Which bits are covered (including self)?
// p1 10110100
@ -177,6 +177,22 @@ namespace gr {
return pack_nibble(d1, d2, d3, d4);
}
// Manual Hamming
void hamming_decode_soft(uint8_t* words, uint32_t len, uint8_t* out_data) {
uint32_t out_index = 0;
for(int i = 0; i < len; i+=2) {
uint8_t d1 = 0;
d1 = hamming_decode_soft_byte(words[i]);
uint8_t d2 = 0;
if(i+1 < len)
d2 = hamming_decode_soft_byte(words[i+1]);
out_data[out_index] = (d1 << 4) | d2;
out_index++;
}
}
}
}