This commit is contained in:
2025-09-16 12:08:45 +03:00
parent 648e754d32
commit 105b4e79da
21 changed files with 984 additions and 289 deletions

33
testcmd.h Normal file
View File

@@ -0,0 +1,33 @@
/*#ifndef TESTCMD_H
#define TESTCMD_H
#include <QObject>
#include "cmdwrd.h"
class testcmdwrd:public QObject
{
Q_OBJECT
private slots:
void testConstructor();
void testaddrRTFind();
void testKFind();
void testsubAddrFind();
void testnumDWFind();
private:
const uint8_t addrRT0 = 0;
const uint8_t K0 = 0;
const uint8_t subAddr0 = 0;
const uint8_t numDW0 = 0;
private:
CommandWord mCmdWrd;
};
#endif // TESTCMD_H
*/