Thread, Timer and flash.sh improvements (#165)
Build Firmware / yellow-board (push) Has been cancelled
Build Firmware / lilygo-tdeck (push) Has been cancelled
Build Firmware / m5stack-core2 (push) Has been cancelled
Build Firmware / m5stack-cores3 (push) Has been cancelled
Build SDK / esp32 (push) Has been cancelled
Build SDK / esp32s3 (push) Has been cancelled
Build Simulator / Build-Simulator-Linux (push) Has been cancelled
Build Simulator / Build-Simulator-macOS (push) Has been cancelled
Tests / Run (push) Has been cancelled

- Various improvements to Thread and Timer:
  - Remove "mark as static" option as it is unused
  - Implemented core pinning for ESP32 platforms
  - Use `TickType_t` consistently (instead of `uint32_t`)
  - Use `enum class` instead of `enum`
- Fix for `flash.sh` not working when using `pip` to install `esptool`
This commit is contained in:
Ken Van Hoeylandt
2025-01-13 20:20:43 +01:00
committed by GitHub
parent 5d189fe5a3
commit 43c78c69d8
20 changed files with 151 additions and 198 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ void lvgl_task_start() {
"lvgl",
8192,
nullptr,
tt::Thread::PriorityHigh, // Should be higher than main app task
static_cast<UBaseType_t>(tt::Thread::Priority::High), // Should be higher than main app task
nullptr
);
+1 -1
View File
@@ -29,7 +29,7 @@ void freertosMain() {
"main",
8192,
nullptr,
tt::Thread::PriorityNormal,
static_cast<UBaseType_t>(tt::Thread::Priority::Normal),
nullptr
);