Fully changed timer to fully use std::function<>

This commit is contained in:
dario
2023-10-23 23:58:23 +02:00
parent d591560c95
commit 87ef535471
3 changed files with 9 additions and 4 deletions

View File

@@ -39,6 +39,11 @@
*/
#define STA_RTOS_THREAD_FLAG_TERMINATE ( 1UL << 30 )
/**
* @brief Request thread start.
*/
#define STA_RTOS_THREAD_FLAG_START ( 1UL << 29 )
#define STA_RTOS_THREAD_FLAGS_ERROR_CODE_BITS UINT32_C( 0x0000000F )
#define STA_RTOS_THREAD_FLAGS_ERROR_CODE_EXT_BITS UINT32_C( 0x7FFFFFF0 )