temporarily add another step with rpms at 7000 to assist in debugging some wheels
This commit is contained in:
parent
5b003b606d
commit
f2a5872520
|
|
@ -970,6 +970,17 @@ int tester(SimDevice* devices, int numdevices)
|
|||
}
|
||||
sleep(3);
|
||||
|
||||
fprintf(stdout, "Setting rpms to 7000\n");
|
||||
simdata->rpms = 7000;
|
||||
for (int x = 0; x < numdevices; x++)
|
||||
{
|
||||
if (devices[x].initialized == true)
|
||||
{
|
||||
devices[x].update(&devices[x], simdata);
|
||||
}
|
||||
}
|
||||
sleep(3);
|
||||
|
||||
fprintf(stdout, "Setting rpms to 8000\n");
|
||||
simdata->rpms = 8000;
|
||||
for (int x = 0; x < numdevices; x++)
|
||||
|
|
|
|||
Loading…
Reference in New Issue