Alain Péteut
Alain Péteut
@kdpatino sorry for the late response. This project was born while working at the University of Bern for a simulator of an instrument. It was my first (and last, so...
@mithro it's the FOSS part of what I'm working on currently (simulator of a processing module, using a ZedBoard). I'm employed by [Space Research & Planetary Sciences (WP)](http://www.space.unibe.ch) as a...
The current `CSR2AXI` implementation implements AXI4-Lite, looks like a race condition;-). I'll have a look at it.
@mithro thanks for the input! As soon as I get some spare time I'll dig into it.
If a robot is used with `systemd`, `KillSignal=SIGINT` must be set, as robot looks for `os.Interrupt`.
Bumped into this as well. This should fix it: https://github.com/peteut/sse/commit/1f7e17964175ef6bfb664616fed0925cbf9e142b .
Hitting the same error, using Debian buster. The filename is `libngspice.so.0` in this case. ``` $ sudo ldconfig -p | grep libngspice.so libngspice.so.0 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/libngspice.so.0 ```
[ctyles.util.find_library](https://docs.python.org/3/library/ctypes.html#ctypes-reference) should probably be used here: ```python from ctypes.util import find_library ngspice_lib_filename = find_library('ngspice') ```
@anuejn Use the vendor macro, so for Xilinx Series7 this would be `IBUFGDS_DIFF_OUT`, then connect the `OB` instead of the `O` output as documented in [1].  [1] https://www.xilinx.com/support/documentation/user_guides/ug471_7Series_SelectIO.pdf
CI only checks from 2.7 upwards. I'll add checks for 2.7 in that case.