Rename icons, fix T-Lora Pager config and more (#502)
* **New Features** * Added NFC chip-select to SD card hardware configuration. * **Refactor** * Consolidated and renamed icon resources; apps and status-bar now reference unified icon headers and new icon constants. * Renamed LVGL lock API (timed → lvgl_try_lock) and updated callers. * **Documentation** * Updated module README and license files; added Apache-2.0 license document.
This commit is contained in:
committed by
GitHub
parent
72b55b221e
commit
3a24d058c9
@@ -6,7 +6,7 @@
|
||||
namespace tt::lvgl {
|
||||
|
||||
bool lock(TickType_t timeout) {
|
||||
return lvgl_try_lock_timed(timeout);
|
||||
return lvgl_try_lock(timeout);
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
@@ -18,7 +18,7 @@ public:
|
||||
~LvglSync() override = default;
|
||||
|
||||
bool lock(TickType_t timeoutTicks) const override {
|
||||
return lvgl_try_lock_timed(timeoutTicks);
|
||||
return lvgl_try_lock(timeoutTicks);
|
||||
}
|
||||
|
||||
void unlock() const override {
|
||||
|
||||
Reference in New Issue
Block a user