lsl_push_sample_f function

  1. @Native<NativeLsl_push_sample_f>()
int lsl_push_sample_f(
  1. lsl_outlet out,
  2. Pointer<Float> data
)

Push a pointer to some values as a sample into the outlet. Handles type checking & conversion. @param out The lsl_outlet object through which to push the data. @param data A pointer to values to push. The number of values pointed to must be no less than the number of channels in the sample. #lsl_local_clock(); if omitted, the current time is used. @return Error code of the operation or lsl_no_error if successful (usually attributed to the wrong data type). @{

Implementation

@ffi.Native<NativeLsl_push_sample_f>()
external int lsl_push_sample_f(lsl_outlet out, ffi.Pointer<ffi.Float> data);