LibreVNA/Software/PC_Application/LibreVNA-GUI/Util/prbs.h
2022-10-19 17:31:14 +02:00

19 lines
207 B
C++

#ifndef PRBS_H
#define PRBS_H
class PRBS
{
public:
PRBS(unsigned int bits);
bool next();
private:
unsigned int bits;
unsigned int shiftReg;
unsigned int polynom;
};
#endif // PRBS_H