Merge pull request #44 from cpresser/remove-double-increment

Remove one of the duplicate i++ in the main-loop
This commit is contained in:
Tim Ansell 2019-08-24 09:42:17 +02:00 committed by GitHub
commit 21a424a2d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,8 +40,7 @@ int main(void) {
irq_setie(0);
int i = 0;
while (1) {
i++;
color_wheel(i++);
msleep(80);
}
}
}