Implemented ambient field calibration tool.

This commit is contained in:
2021-08-04 13:17:00 +02:00
parent 8f70f85c84
commit 3596733843
9 changed files with 502 additions and 72 deletions
+13
View File
@@ -0,0 +1,13 @@
class ProxyNotOwnedException(Exception):
"""Should not occur in correct operation. For whatever reason, this means the proxy was invalidated."""
pass
class DeviceAccessError(Exception):
"""General error indicating that HW access failed."""
pass
class DeviceBusy(DeviceAccessError):
"""Error thrown when the HW proxy (i.e. access) cannot be acquired"""
pass