WPILibC++ 2023.4.3-108-ge5452e3
|
Functions | |
NT_Bool | NT_SetRaw (NT_Handle pubentry, int64_t time, const uint8_t *value, size_t len) |
Publish a new value. More... | |
NT_Bool | NT_SetDefaultRaw (NT_Handle pubentry, const uint8_t *defaultValue, size_t defaultValueLen) |
Publish a default value. More... | |
uint8_t * | NT_GetRaw (NT_Handle subentry, const uint8_t *defaultValue, size_t defaultValueLen, size_t *len) |
Get the last published value. More... | |
void | NT_GetAtomicRaw (NT_Handle subentry, const uint8_t *defaultValue, size_t defaultValueLen, struct NT_TimestampedRaw *value) |
Get the last published value along with its timestamp. More... | |
void | NT_DisposeTimestampedRaw (struct NT_TimestampedRaw *value) |
Disposes a timestamped value (as returned by NT_GetAtomicRaw). More... | |
struct NT_TimestampedRaw * | NT_ReadQueueRaw (NT_Handle subentry, size_t *len) |
Get an array of all value changes since the last call to ReadQueue. More... | |
void | NT_FreeQueueRaw (struct NT_TimestampedRaw *arr, size_t len) |
Frees a timestamped array of values (as returned by NT_ReadQueueRaw). More... | |
void NT_DisposeTimestampedRaw | ( | struct NT_TimestampedRaw * | value | ) |
Disposes a timestamped value (as returned by NT_GetAtomicRaw).
value | timestamped value |
void NT_FreeQueueRaw | ( | struct NT_TimestampedRaw * | arr, |
size_t | len | ||
) |
Frees a timestamped array of values (as returned by NT_ReadQueueRaw).
arr | array |
len | length of array |
void NT_GetAtomicRaw | ( | NT_Handle | subentry, |
const uint8_t * | defaultValue, | ||
size_t | defaultValueLen, | ||
struct NT_TimestampedRaw * | 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 |
defaultValueLen | length of default value |
value | timestamped value (output) |
uint8_t * NT_GetRaw | ( | NT_Handle | subentry, |
const uint8_t * | defaultValue, | ||
size_t | defaultValueLen, | ||
size_t * | len | ||
) |
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 |
defaultValueLen | length of default value |
len | length of returned value (output) |
struct NT_TimestampedRaw * NT_ReadQueueRaw | ( | 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) |
NT_Bool NT_SetDefaultRaw | ( | NT_Handle | pubentry, |
const uint8_t * | defaultValue, | ||
size_t | defaultValueLen | ||
) |
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 |
defaultValueLen | length of default value |