Skip to content

Commit 61aa45e

Browse files
authored
Update LSL.cs
In a PR elsewhere, someone said this was a better way to provide a summary. Sure.
1 parent 3b48370 commit 61aa45e

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

LSL.cs

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22
using System.Runtime.InteropServices;
33
using System.Collections;
44

5-
/**
6-
* C# API for the lab streaming layer.
7-
*
8-
* The lab streaming layer provides a set of functions to make instrument data accessible
9-
* in real time within a lab network. From there, streams can be picked up by recording programs,
10-
* viewing programs or custom experiment applications that access data streams in real time.
11-
*
12-
* The API covers two areas:
13-
* - The "push API" allows to create stream outlets and to push data (regular or irregular measurement
14-
* time series, event data, coded audio/video frames, etc.) into them.
15-
* - The "pull API" allows to create stream inlets and read time-synched experiment data from them
16-
* (for recording, viewing or experiment control).
17-
*
18-
*/
5+
196
namespace LSL {
7+
/// <summary>
8+
/// C# API for the lab streaming layer.
9+
///
10+
/// The lab streaming layer provides a set of functions to make instrument data accessible
11+
/// in real time within a lab network. From there, streams can be picked up by recording programs,
12+
/// viewing programs or custom experiment applications that access data streams in real time.
13+
///
14+
/// The API covers two areas:
15+
/// - The "push API" allows to create stream outlets and to push data (regular or irregular measurement
16+
/// time series, event data, coded audio/video frames, etc.) into them.
17+
/// - The "pull API" allows to create stream inlets and read time-synched experiment data from them
18+
/// (for recording, viewing or experiment control).
19+
///
20+
/// </summary>
2021

2122
public class liblsl
2223
{

0 commit comments

Comments
 (0)