WPILibC++ 2023.4.3-108-ge5452e3
|
HAL Simulator Extensions. More...
Typedefs | |
typedef int | halsim_extension_init_func_t(void) |
Functions | |
int | HAL_LoadOneExtension (const char *library) |
Loads a single extension from a direct path. More... | |
int | HAL_LoadExtensions (void) |
Loads any extra halsim libraries provided in the HALSIM_EXTENSIONS environment variable. More... | |
void | HAL_RegisterExtension (const char *name, void *data) |
Registers an extension such that other extensions can discover it. More... | |
void | HAL_RegisterExtensionListener (void *param, void(*func)(void *, const char *name, void *data)) |
Registers an extension registration listener function. More... | |
void | HAL_SetShowExtensionsNotFoundMessages (HAL_Bool showMessage) |
Enables or disables the message saying no HAL extensions were found. More... | |
void | HAL_OnShutdown (void *param, void(*func)(void *)) |
Registers a function to be called from HAL_Shutdown(). More... | |
HAL Simulator Extensions.
These are libraries that provide additional simulator functionality.
An extension must expose the HALSIM_InitExtension entry point which is invoked after the library is loaded.
The entry point is expected to return < 0 for errors that should stop the HAL completely, 0 for success, and > 0 for a non fatal error.
typedef int halsim_extension_init_func_t(void) |
int HAL_LoadExtensions | ( | void | ) |
Loads any extra halsim libraries provided in the HALSIM_EXTENSIONS environment variable.
int HAL_LoadOneExtension | ( | const char * | library | ) |
Loads a single extension from a direct path.
Expected to be called internally, not by users.
library | the library path |
void HAL_OnShutdown | ( | void * | param, |
void(*)(void *) | func | ||
) |
Registers a function to be called from HAL_Shutdown().
This is intended for use only by simulation extensions.
param | parameter data to pass to callback function |
func | callback function |
void HAL_RegisterExtension | ( | const char * | name, |
void * | data | ||
) |
Registers an extension such that other extensions can discover it.
The passed data pointer is retained and the extension must keep this pointer valid.
name | extension name (may embed version number) |
data | data pointer |
void HAL_RegisterExtensionListener | ( | void * | param, |
void(*)(void *, const char *name, void *data) | func | ||
) |
Registers an extension registration listener function.
The function will be called immediately with any currently registered extensions, and will be called later when any additional extensions are registered.
param | parameter data to pass to callback function |
func | callback function to be called for each registered extension; parameters are the parameter data, extension name, and extension data pointer passed to HAL_RegisterExtension() |
void HAL_SetShowExtensionsNotFoundMessages | ( | HAL_Bool | showMessage | ) |
Enables or disables the message saying no HAL extensions were found.
Some apps don't care, and the message create clutter. For general team code, we want it.
This must be called before HAL_Initialize is called.
This defaults to true.
showMessage | true to show message, false to not. |