Jan Breuer
Jan Breuer
In the specification, there is possible to have arbitrary data without definig length. ``` #0 ```
It would be nice to support arrays of larger types in arbitrary block. Currently, there is only one function for parameter `SCPI_ParamArbitraryBlock()` and one for result `SCPI_ResultArbitraryBlock()` It is sometimes...
Library is not thread safe. To overcome this issue - user must use library only in one thread and use message queue to communicate with scpi thread - user must...
It is currently needed to expand all possible units, prefixes and suffixes. It will be nice functionality to implement separate definitions of prefixes, separate definitions of suffixes, separate definition of...
Support unit suffixes: - PK: Peak amplitude - PP: Peak-to-peak amplitude - RMS: RMS amplitude Support unit prefix: - dB Support special case: - dBm: witch is equivalent to dBmW...
May be little bit late (I missed the refactoring to python3 only version) When the only supported version of python is python3, isn't it possible to finally use `bytes` for...
In latest versions, there was made bad decision to replace `None` with `False`. It is now not possible to distinguis between `False` and not set entry because neither `KeyError` nor...
In the code, there is ```python key_string_error = TypeError('Key/name must be a string!') ``` which create exception on place, where it does not occur. And later use ```python raise self.key_string_error...
Signal handler is wrong and it sohuld take two arguments but it takes zero. If script is killed, this exception appear. ``` TypeError: sigterm_handler() takes 0 positional arguments but 2...