osal icon indicating copy to clipboard operation
osal copied to clipboard

Results 7 osal issues
Sort by recently updated
recently updated
newest added

This improves accuracy compared to sleep. This make use of high resolution timers on modern windows machines to ensure timers as well as sleeps are close to 1 ms accurate,...

Extend the timer used to 64bit by keeping track of when it wraps - Fixed for freertos and rt-kernel case - Added test case for wrapping clock Background When kernel...

Extend the timer used to 64bit by keeping track of when it wraps Background When kernel is running at tick rate different from 1000 ticks per seconds: - tick_to_ms will...

To quote the project description: _"This repository contains an OS abstraction layer. ... This abstraction layer is mainly focused on threading functionality."_ And yet the newly added FreeRTOS code includes...

Expose a osal-interface target that is of cmake INTERFACE type. This target only defines the osal API and allow delaying the choice of linking of final osal port implementation to...

- Add support for os_exit() to allow a portable wait to indicate that system should shut down - Add support for a delayed exit routine to indicate shutdown of system...

If mutex is not held when signalling the condition variable, a thread woken up by the mutex unlock, may have lower priority than the thread waiting on the condition leading...