LibreVNA/Software/PC_Application/LibreVNA-GUI/Util/prbs.h

19 lines
207 B
C
Raw Normal View History

2022-10-19 23:31:14 +08:00
#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