Remove Berry `every_200ms` event which didn't work anyways (#20205)

This commit is contained in:
s-hadinger 2023-12-11 21:22:20 +01:00 committed by GitHub
parent 864a99d887
commit f7cf94b929
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
- Command ``WebCanvas linear-gradient(#F02 7%,#F93,#FF4,#082,#00F,#708 93%)`` to set GUI canvas
### Breaking Changed
- Remove Berry `every_200ms` event which didn't work anyways
### Changed
- ESP32 LVGL library from v8.3.10 to v8.3.11 (no functional change)

View File

@ -906,9 +906,6 @@ bool Xdrv52(uint32_t function)
case FUNC_EVERY_100_MSECOND:
callBerryEventDispatcher(PSTR("every_100ms"), nullptr, 0, nullptr);
break;
case FUNC_EVERY_200_MSECOND:
callBerryEventDispatcher(PSTR("every_200ms"), nullptr, 0, nullptr);
break;
case FUNC_EVERY_250_MSECOND:
callBerryEventDispatcher(PSTR("every_250ms"), nullptr, 0, nullptr);
break;