Remove one of the duplicate i++ in the main-loop

This commit is contained in:
Carsten Presser 2019-08-23 17:57:51 +02:00
parent 05c09bedc1
commit a51507e75a

View file

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