change blink in closed loop

This commit is contained in:
Matthew Kennedy 2020-12-10 18:09:52 -08:00
parent ea1f528aea
commit b8c5e42f9d
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ int main() {
while(true)
{
palTogglePad(GPIOB, 6);
chThdSleepMilliseconds(400);
chThdSleepMilliseconds(IsRunningClosedLoop() ? 50 : 400);
}
}