lsl_push_chunk_ft function

  1. @Native<NativeLsl_push_chunk_ft>()
int lsl_push_chunk_ft(
  1. lsl_outlet out,
  2. Pointer<Float> data,
  3. int data_elements,
  4. double timestamp,
)

@copydoc lsl_push_chunk_f @param timestamp Optionally the capture time of the most recent sample, in agreement with lsl_local_clock(); if omitted, the current time is used. The time stamps of other samples are automatically derived based on the sampling rate of the stream. @{

Implementation

@ffi.Native<NativeLsl_push_chunk_ft>()
external int lsl_push_chunk_ft(
  lsl_outlet out,
  ffi.Pointer<ffi.Float> data,
  int data_elements,
  double timestamp,
);