temporarily add another step with rpms at 7000 to assist in debugging some wheels

This commit is contained in:
Paul Dino Jones 2025-01-14 20:23:11 -05:00
parent 5b003b606d
commit f2a5872520
1 changed files with 11 additions and 0 deletions

View File

@ -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++)