M17_Implementations/SP5WWP/lib/phy/randomize.h

20 wiersze
330 B
C

//-------------------------------
// M17 C library - phy/randomize.h
//
// Wojciech Kaczmarski, SP5WWP
// M17 Project, 28 December 2023
//-------------------------------
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
//randomizing pattern
extern const uint8_t rand_seq[46];
#ifdef __cplusplus
}
#endif