-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
bugSomething isn't workingSomething isn't working
Description
In most cases, the loop counter variable is a uint16_t
. However, near the end of init_leds()
there is the following lines of code which use an uint8_t
. This becomes an infinite loop when there are more than 255 LEDs.
for (uint8_t x = 0; x < CONFIG.LED_COUNT; x++) {
leds_out[x] = CRGB(0, 0, 0);
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working