1.4.4.16 OSAL_Name Function
1.4.4.16 C
const char* OSAL_Name (void)
1.4.4.16 Summary
Obtains the name of the underlying RTOS.
1.4.4.16 Description
This function returns a const char* to the textual name of the RTOS. The name is a NULL terminated string.
1.4.4.16 Precondition
None.
1.4.4.16 Parameters
None.
1.4.4.16 Returns
Name of the underlying RTOS or NULL.
1.4.4.16 Example
// get the RTOS name
const char* sName;
sName = OSAL_Name();
sprintf(buff, "RTOS: %s", sName);
1.4.4.16 Remarks
None.
