Fix up _Bootscreen.h and _Statusscreen.h

- Support for 3 and 4-frame fan animation
- Binary bitmap data for easier visualization
- Cleanup mystery numbers, etc.
This commit is contained in:
Scott Lahteine 2018-01-26 18:11:05 -06:00
parent f4639fa964
commit 8bccd0ef5b
12 changed files with 1595 additions and 1163 deletions

View file

@ -4871,7 +4871,7 @@ bool lcd_blink() {
millis_t ms = millis();
if (ELAPSED(ms, next_blink_ms)) {
blink ^= 0xFF;
next_blink_ms = ms + 1000 - LCD_UPDATE_INTERVAL / 2;
next_blink_ms = ms + 1000 - (LCD_UPDATE_INTERVAL) / 2;
}
return blink != 0;
}