pub unsafe extern "C" fn hal_get_signal_value_by_name(
    name: *const c_char,
    type_: *mut hal_type_t,
    data: *mut *mut hal_data_u,
    has_writers: *mut bool
) -> c_int
Expand description

‘hal_get_signal_value_by_name()’ returns the value of any arbitrary HAL signal by signal name.

The ‘type’ and ‘data’ args are pointers to the returned values. The function returns 0 if successful, or -1 on error. If ‘has_writers’ is non-NULL, its value will be true if the signal has writers.