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
+5 -5
View File
@@ -17,7 +17,7 @@ bool isRunning() {
}
int32_t lock() {
tt_assert(!TT_IS_ISR());
assert(!TT_IS_ISR());
int32_t lock;
@@ -42,7 +42,7 @@ int32_t lock() {
}
int32_t unlock() {
tt_assert(!TT_IS_ISR());
assert(!TT_IS_ISR());
int32_t lock;
@@ -72,7 +72,7 @@ int32_t unlock() {
}
int32_t restoreLock(int32_t lock) {
tt_assert(!TT_IS_ISR());
assert(!TT_IS_ISR());
switch (xTaskGetSchedulerState()) {
case taskSCHEDULER_SUSPENDED:
@@ -108,7 +108,7 @@ uint32_t getTickFrequency() {
}
void delayTicks(TickType_t ticks) {
tt_assert(!TT_IS_ISR());
assert(!TT_IS_ISR());
if (ticks == 0U) {
taskYIELD();
} else {
@@ -117,7 +117,7 @@ void delayTicks(TickType_t ticks) {
}
TtStatus delayUntilTick(TickType_t tick) {
tt_assert(!TT_IS_ISR());
assert(!TT_IS_ISR());
TickType_t tcnt, delay;
TtStatus stat;