WPILibC++ 2023.4.3-108-ge5452e3
|
Functions | |
NT_Bool | NT_SetFloat (NT_Handle pubentry, int64_t time, float value) |
Publish a new value. More... | |
NT_Bool | NT_SetDefaultFloat (NT_Handle pubentry, float defaultValue) |
Publish a default value. More... | |
float | NT_GetFloat (NT_Handle subentry, float defaultValue) |
Get the last published value. More... | |
void | NT_GetAtomicFloat (NT_Handle subentry, float defaultValue, struct NT_TimestampedFloat *value) |
Get the last published value along with its timestamp. More... | |
void | NT_DisposeTimestampedFloat (struct NT_TimestampedFloat *value) |
Disposes a timestamped value (as returned by NT_GetAtomicFloat). More... | |
struct NT_TimestampedFloat * | NT_ReadQueueFloat (NT_Handle subentry, size_t *len) |
Get an array of all value changes since the last call to ReadQueue. More... | |
void | NT_FreeQueueFloat (struct NT_TimestampedFloat *arr, size_t len) |
Frees a timestamped array of values (as returned by NT_ReadQueueFloat). More... | |
float * | NT_ReadQueueValuesFloat (NT_Handle subentry, size_t *len) |
Get an array of all value changes since the last call to ReadQueue. More... | |
void NT_DisposeTimestampedFloat | ( | struct NT_TimestampedFloat * | value | ) |
Disposes a timestamped value (as returned by NT_GetAtomicFloat).
value | timestamped value |
void NT_FreeQueueFloat | ( | struct NT_TimestampedFloat * | arr, |
size_t | len | ||
) |
Frees a timestamped array of values (as returned by NT_ReadQueueFloat).
arr | array |
len | length of array |
void NT_GetAtomicFloat | ( | NT_Handle | subentry, |
float | defaultValue, | ||
struct NT_TimestampedFloat * | value | ||
) |
Get the last published value along with its timestamp.
If no value has been published, returns the passed defaultValue and a timestamp of 0.
subentry | subscriber or entry handle |
defaultValue | default value to return if no value has been published |
value | timestamped value (output) |
float NT_GetFloat | ( | NT_Handle | subentry, |
float | defaultValue | ||
) |
Get the last published value.
If no value has been published, returns the passed defaultValue.
subentry | subscriber or entry handle |
defaultValue | default value to return if no value has been published |
struct NT_TimestampedFloat * NT_ReadQueueFloat | ( | NT_Handle | subentry, |
size_t * | len | ||
) |
Get an array of all value changes since the last call to ReadQueue.
Also provides a timestamp for each value.
subentry | subscriber or entry handle |
len | length of returned array (output) |
float * NT_ReadQueueValuesFloat | ( | NT_Handle | subentry, |
size_t * | len | ||
) |
Get an array of all value changes since the last call to ReadQueue.
subentry | subscriber or entry handle |
len | length of returned array (output) |
Publish a default value.
On reconnect, a default value will never be used in preference to a published value.
pubentry | publisher or entry handle |
defaultValue | default value |