14 lines
649 B
C
14 lines
649 B
C
/*#############################################################################
|
|
## Author: Shaun Reed ##
|
|
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
|
## ##
|
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
|
##############################################################################
|
|
*/
|
|
|
|
#include "include/lcd.h"
|
|
|
|
// LVGL library is not thread-safe, this example calls LVGL APIs from tasks.
|
|
// We must use a mutex to protect it.
|
|
static _lock_t lv_lock_;
|