Python bindings for the USB commands needed to program the USB-SP4T-63 from Mini-Circuits. Programming details can be found: here
Go to file
Jojeee 4aaa36534d fixed spelling in readme 2022-08-17 19:01:19 +01:00
examples Finished adding commands 2022-08-17 19:00:12 +01:00
.gitignore added .gitignore 2022-08-17 18:59:57 +01:00
README.md fixed spelling in readme 2022-08-17 19:01:19 +01:00
SP4T.py Finished adding commands 2022-08-17 19:00:12 +01:00

README.md

errata

  • In the function 'get_switching_step()', the documentation of the relevant command (Get Step 205_1 on p54) states that the returned array is 6 bytes long in the format
    • [0] = '205'
    • [1] = step_index
    • [2] = swtich_state
    • [3] = dwell_0
    • [4] = dwell_1
    • [5] = dwell_units
  • This arrangement is incorrect, at least for firmware version 'A3' which is all I have access to. The actual returned array is as follows:
    • [0] = '205'
    • [2] = switch_state
    • [3] = dwell_0
    • [4] = dwell_1
    • [5] = dwell_units
  • This means that from the returned array alone the relevant step cannot be determined