SDK improvements (#352)

TactilityC additions for:
- C randomization functions
- Tactility app paths
- Tactility locks
This commit is contained in:
Ken Van Hoeylandt
2025-09-29 22:45:14 +02:00
committed by GitHub
parent 6dc4f698c9
commit c7621b5e4c
13 changed files with 204 additions and 18 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#pragma once
#include <freertos/FreeRTOS.h>
#include "tt_kernel.h"
#ifdef __cplusplus
extern "C" {
@@ -33,7 +33,7 @@ void tt_mutex_free(MutexHandle handle);
* @param[in] timeout the maximum amount of ticks to wait when trying to lock
* @return true when the lock was acquired
*/
bool tt_mutex_lock(MutexHandle handle, TickType_t timeout);
bool tt_mutex_lock(MutexHandle handle, TickType timeout);
/**
* Attempt to unlock a mutex.