spirack 0.2.14__tar.gz → 0.2.15__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {spirack-0.2.14 → spirack-0.2.15}/PKG-INFO +13 -2
  2. {spirack-0.2.14 → spirack-0.2.15}/spirack/chip_mode.py +3 -0
  3. spirack-0.2.15/spirack/version.py +1 -0
  4. {spirack-0.2.14 → spirack-0.2.15}/spirack.egg-info/PKG-INFO +13 -2
  5. spirack-0.2.14/spirack/version.py +0 -1
  6. {spirack-0.2.14 → spirack-0.2.15}/LICENSE +0 -0
  7. {spirack-0.2.14 → spirack-0.2.15}/README.md +0 -0
  8. {spirack-0.2.14 → spirack-0.2.15}/setup.cfg +0 -0
  9. {spirack-0.2.14 → spirack-0.2.15}/setup.py +0 -0
  10. {spirack-0.2.14 → spirack-0.2.15}/spirack/B1b_module.py +0 -0
  11. {spirack-0.2.14 → spirack-0.2.15}/spirack/B2b_module.py +0 -0
  12. {spirack-0.2.14 → spirack-0.2.15}/spirack/D4_module.py +0 -0
  13. {spirack-0.2.14 → spirack-0.2.15}/spirack/D4a_module.py +0 -0
  14. {spirack-0.2.14 → spirack-0.2.15}/spirack/D4b_module.py +0 -0
  15. {spirack-0.2.14 → spirack-0.2.15}/spirack/D5a_module.py +0 -0
  16. {spirack-0.2.14 → spirack-0.2.15}/spirack/D5b_module.py +0 -0
  17. {spirack-0.2.14 → spirack-0.2.15}/spirack/F1d_module.py +0 -0
  18. {spirack-0.2.14 → spirack-0.2.15}/spirack/M2j_module.py +0 -0
  19. {spirack-0.2.14 → spirack-0.2.15}/spirack/M2p_module.py +0 -0
  20. {spirack-0.2.14 → spirack-0.2.15}/spirack/P2d_module.py +0 -0
  21. {spirack-0.2.14 → spirack-0.2.15}/spirack/S4g_module.py +0 -0
  22. {spirack-0.2.14 → spirack-0.2.15}/spirack/S5i_module.py +0 -0
  23. {spirack-0.2.14 → spirack-0.2.15}/spirack/S5k_module.py +0 -0
  24. {spirack-0.2.14 → spirack-0.2.15}/spirack/S5l_module.py +0 -0
  25. {spirack-0.2.14 → spirack-0.2.15}/spirack/U1c_module.py +0 -0
  26. {spirack-0.2.14 → spirack-0.2.15}/spirack/U2_module.py +0 -0
  27. {spirack-0.2.14 → spirack-0.2.15}/spirack/__init__.py +0 -0
  28. {spirack-0.2.14 → spirack-0.2.15}/spirack/spi_rack.py +0 -0
  29. {spirack-0.2.14 → spirack-0.2.15}/spirack.egg-info/SOURCES.txt +0 -0
  30. {spirack-0.2.14 → spirack-0.2.15}/spirack.egg-info/dependency_links.txt +0 -0
  31. {spirack-0.2.14 → spirack-0.2.15}/spirack.egg-info/requires.txt +0 -0
  32. {spirack-0.2.14 → spirack-0.2.15}/spirack.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: spirack
3
- Version: 0.2.14
3
+ Version: 0.2.15
4
4
  Summary: Drivers for the QuTech SPI-rack
5
5
  Home-page: https://github.com/mtiggelman/SPI-rack
6
6
  Author: Marijn Tiggelman
@@ -14,6 +14,17 @@ Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
15
  Requires-Dist: pyserial
16
16
  Requires-Dist: numpy
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: keywords
24
+ Dynamic: license
25
+ Dynamic: license-file
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
17
28
 
18
29
  # SPI Rack
19
30
  The SPI Rack is a modular electronic instrumentation platform developed by QuTech. It has been developed to perform measurements on nanoelectronic devices, but is not limited to this. Design priority was the minimization of noise and interference signals on the wires connected to the measured device (sample). To learn more about the SPI Rack, use cases and the available modules, browse the [homepage](http://qtwork.tudelft.nl/~mtiggelman/).
@@ -22,11 +22,13 @@ BICPINS_MODE = 0
22
22
  ADT7301_MODE = 0 # C1b temperature sensor
23
23
  CRYOMUX_MODE = 0 # cryomux shift register
24
24
  SAMD51_MODE = 0 # SAMD51G19A microcontroller
25
+ HCT595_MODE = 0 # Shift-register
25
26
 
26
27
  # SPI clock = MCK/SCBR = 84MHz/SCBR (range 14..255)
27
28
  LTC2758_SPEED = 6 # 14MHz (40MHz later)
28
29
  LTC2758_RD_SPEED = 8 # 10.5MHz
29
30
  AD9106_SPEED = 6 # 14MHz (Can go higher)
31
+ AD9106_RD_SPEED = 21 # 4MHz; (slow for test
30
32
  SAMD51_SPEED = 10 # 8.4 MHz
31
33
  MAX5702_SPEED = 6 # 14MHz
32
34
  MAX521x_SPEED = 6 # 14MHz
@@ -37,3 +39,4 @@ MCP320x_SPEED = 84 # 1MHz
37
39
  BICPINS_SPEED = 84 # 1MHz
38
40
  ADT7301_SPEED = 84 # 1MHz
39
41
  CRYOMUX_SPEED = 0 # 5kHz
42
+ HCT595_SPEED = 84 # 1MHz
@@ -0,0 +1 @@
1
+ __version__ = '0.2.15'
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: spirack
3
- Version: 0.2.14
3
+ Version: 0.2.15
4
4
  Summary: Drivers for the QuTech SPI-rack
5
5
  Home-page: https://github.com/mtiggelman/SPI-rack
6
6
  Author: Marijn Tiggelman
@@ -14,6 +14,17 @@ Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
15
  Requires-Dist: pyserial
16
16
  Requires-Dist: numpy
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: keywords
24
+ Dynamic: license
25
+ Dynamic: license-file
26
+ Dynamic: requires-dist
27
+ Dynamic: summary
17
28
 
18
29
  # SPI Rack
19
30
  The SPI Rack is a modular electronic instrumentation platform developed by QuTech. It has been developed to perform measurements on nanoelectronic devices, but is not limited to this. Design priority was the minimization of noise and interference signals on the wires connected to the measured device (sample). To learn more about the SPI Rack, use cases and the available modules, browse the [homepage](http://qtwork.tudelft.nl/~mtiggelman/).
@@ -1 +0,0 @@
1
- __version__ = '0.2.14'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes