rt mode v1

This commit is contained in:
2025-08-12 21:51:30 +03:00
commit 603fec6fc3
16 changed files with 4379 additions and 0 deletions

49
testinfo.h Normal file
View File

@@ -0,0 +1,49 @@
/*#ifndef TESTINFO_H
#define TESTINFO_H
#include <QObject>
#include <QTest>
class testInfo:public QObject
{
Q_OBJECT
private slots:
void testcreateevent();
void testTmkOpen();
void testtmkgetmaxn();
void testmrtgetmaxn();
void testtmkconfig();
void testtmkselect();
void testtmkgetinfo();
void testtmkgethwver();
//Now we'll test onboard RAM in Bus Controller mode
void testbcreset();
void testbcgetmaxbase();
void testbcputgetw();
void testbcputgetblk();
//Now we'll test onboard RAM in Remote Terminal mode
void testrtreset();
void testrtgetmaxpage();
void testrtputgetw();
void testrtputgetblk();
//Now we'll test interrupt in Bus Controller mode
void testgetInt();
void init();
void cleanup();
void cleanupTestCase();
protected:
bool isFailed = false;
};
#endif // TESTINFO_H
*/