Svein Seldal

Results 334 comments of Svein Seldal

It might be a little OT for the issue, but please let me give an overview of why I think we must consider this: The reason for having `List[Any]` or...

Let me permit to show how I use it in my application, because I hope it might be relevant for the discussion how to use attr, desert and marshmallow and...

I make an end-user program for testing home cinema setups, https://elns.netlify.app/, which is based on Portaudio. I needed loopback support too, so I have patched PA and imported the Audcity...

@darronmcnutt that's interesting that you observe dropouts in ASIO and DirectSound too. I have stable operation in all host APIs, including DS and ASIO (to Focusrite Scarlett. I haven't tried...

I'd like to publish canopen-asyncio. Is the canopen project open to having the asyncio support built into it? @christiansandberg. The change footprint of canopen-asyncio is actually not that big and...

Awesome. Let me prepare for a PR towards migration into this repo, and we can take it from there. I guess it will be easier to discuss the particulars when...

As mentioned, I haven't investigated how many of these thread crossings are implicitly safe by design, e.g. write-only from RX thread, read-only from main thread and so on. I found...

Maybe I'm misunderstanding the API or doing something wrong, but if I call `node.rpdo.subscribe()` instead of `node.rpdo.read()` and vice versa for the tpdo, I still cannot access the rpdo by...

Yes, the EDS contains the RPDO mapping in 1600, and TPDO mapping in 1A00. The `DefaultValue` contains an encode of the OD parameter. In this example `DefaultValue = 538050576` which...

I think I've found a solution, https://github.com/sveinse/canopen-asyncio/commit/5631a03a5ff2575638e5e33cbbd6eed125896caf. Basically added an `from_od` option to pdo/base.py `Map.read()`: ```python def read(self, from_od=False) -> None: """Read PDO configuration for this map using SDO or...