You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
309 B
14 lines
309 B
#include "TestRegister.h"
|
|
|
|
TestRegister::TestRegister(quint32 offset, quint32 bar, const UltraSoundDevice& usd) : BaseRegister(
|
|
offset,
|
|
bar,
|
|
usd),
|
|
fiedl1(0x000000FF, false),
|
|
fiedl2(0x0000FF00, false),
|
|
fiedl3(0xFFFF0000, false)
|
|
{
|
|
appendToList(fiedl1);
|
|
appendToList(fiedl2);
|
|
appendToList(fiedl3);
|
|
}
|
|
|