You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 10, 2023. It is now read-only.
One thing that is fantastic about xillybus is that its API is just low-level system calls (open, read, write) for all IO. This is wonderful because when I write a library or application, I can just spoof data streams using standard files and named pipes rather than having to use actual hardware. It makes testing so easy and makes my code generic in the case that data is actually coming from a file (e.g. data replay). I wonder if this was considered when writing this API. I would love to switch to a fully open source alternative for my project, but I think would need to significantly refactor and probably break this generic IO interface.