Fixes and improvements (#185)

- unPhone improvements related to power and boot (add boot count logging)
- Cleanup of Mutex acquire/release
- Removed `tt_assert()` in favour of `assert()`
- Fix sim build (likely failed due to migration of GitHub Actions to Ubuntu 24.04)
This commit is contained in:
Ken Van Hoeylandt
2025-01-24 22:49:29 +01:00
committed by GitHub
parent 3be251d8fb
commit d86dc40472
47 changed files with 223 additions and 177 deletions
+7 -7
View File
@@ -35,18 +35,18 @@ Mutex::Mutex(Type type) : type(type) {
tt_crash("Mutex type unknown/corrupted");
}
tt_assert(semaphore != nullptr);
assert(semaphore != nullptr);
}
Mutex::~Mutex() {
tt_assert(!TT_IS_IRQ_MODE());
assert(!TT_IS_IRQ_MODE());
vSemaphoreDelete(semaphore);
semaphore = nullptr; // If the mutex is used after release, this might help debugging
}
TtStatus Mutex::acquire(TickType_t timeout) const {
tt_assert(!TT_IS_IRQ_MODE());
tt_assert(semaphore != nullptr);
assert(!TT_IS_IRQ_MODE());
assert(semaphore != nullptr);
tt_mutex_info(mutex, "acquire");
@@ -78,7 +78,7 @@ TtStatus Mutex::acquire(TickType_t timeout) const {
TtStatus Mutex::release() const {
assert(!TT_IS_IRQ_MODE());
tt_assert(semaphore);
assert(semaphore);
tt_mutex_info(mutex, "release");
switch (type) {
@@ -101,8 +101,8 @@ TtStatus Mutex::release() const {
}
ThreadId Mutex::getOwner() const {
tt_assert(!TT_IS_IRQ_MODE());
tt_assert(semaphore);
assert(!TT_IS_IRQ_MODE());
assert(semaphore);
return (ThreadId)xSemaphoreGetMutexHolder(semaphore);
}