Chadwick Boulay

Results 382 comments of Chadwick Boulay

>> It would be a drag to have to know the sampling rate for this parameter > But number of samples works in all cases and is a lot easier...

BTW, I just tested in Python creating an outlet with max_buffered=1 using either FS=0.9 or FS=1.0. The 0.9 never becomes visible to the inlet but the 1.0 works perfectly. ```Python...

RE the Python example, I guess my point was that this is a mistake that a user could conceivably make and there are currently no warnings or safe guards against...

Also, optional arguments aren't a thing in C functions, so anything that uses the C API will need to provide these arguments explicitly. That includes at least the Python and...

One of the key features of LSL is data synchronization. Another key feature is easy inter-process communication. A target audience of people using LSL for inter-process communication are people that...

Please test the .so I attached to a comment on https://github.com/labstreaminglayer/liblsl/pull/2

Great. Can you please add this link to the PR which is where I have been sending? Also, can you test the lib I built? I hope to include it...

LSL can communicate between processes on localhost, within a subnet, and even across the internet (the latter is maybe what you read w.r.t. configuration file changes). I'm not sure if...

I've never used this feature so I don't know off-hand. I think KnownPeers is more of a fallback rather than a limiter. In addition to ResolveScope, you might want to...

The most reliable way to understand what the different lsl_api.cfg entries do is to look at the code. In this case: https://github.com/sccn/liblsl/blob/master/src/api_config.h#L87-L103