sdfgen 0.23.1__cp310-cp310-macosx_14_0_arm64.whl → 0.24.0__cp310-cp310-macosx_14_0_arm64.whl

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.
Binary file
libcsdfgen.0.dylib CHANGED
Binary file
libcsdfgen.dylib CHANGED
Binary file
sdfgen/module.py CHANGED
@@ -169,7 +169,7 @@ libsdfgen.sdfgen_sddf_blk_serialise_config.restype = c_bool
169
169
  libsdfgen.sdfgen_sddf_blk_serialise_config.argtypes = [c_void_p, c_char_p]
170
170
 
171
171
  libsdfgen.sdfgen_sddf_serial.restype = c_void_p
172
- libsdfgen.sdfgen_sddf_serial.argtypes = [c_void_p, c_void_p, c_void_p, c_void_p, c_void_p, c_bool]
172
+ libsdfgen.sdfgen_sddf_serial.argtypes = [c_void_p, c_void_p, c_void_p, c_void_p, c_void_p, c_bool, c_char_p]
173
173
  libsdfgen.sdfgen_sddf_serial_destroy.restype = None
174
174
  libsdfgen.sdfgen_sddf_serial_destroy.argtypes = [c_void_p]
175
175
 
@@ -719,7 +719,8 @@ class Sddf:
719
719
  virt_tx: SystemDescription.ProtectionDomain,
720
720
  *,
721
721
  virt_rx: Optional[SystemDescription.ProtectionDomain] = None,
722
- enable_color: bool = True
722
+ enable_color: bool = True,
723
+ begin_str: Optional[str] = None,
723
724
  ) -> None:
724
725
  if device is None:
725
726
  device_obj = None
@@ -731,8 +732,12 @@ class Sddf:
731
732
  else:
732
733
  virt_rx_obj = virt_rx._obj
733
734
 
735
+ if begin_str:
736
+ c_begin_str = c_char_p(begin_str.encode("utf-8"))
737
+ else:
738
+ c_begin_str = None
734
739
  self._obj = libsdfgen.sdfgen_sddf_serial(
735
- sdf._obj, device_obj, driver._obj, virt_tx._obj, virt_rx_obj, c_bool(enable_color)
740
+ sdf._obj, device_obj, driver._obj, virt_tx._obj, virt_rx_obj, c_bool(enable_color), c_begin_str
736
741
  )
737
742
  if self._obj is None:
738
743
  raise Exception("failed to create serial system")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sdfgen
3
- Version: 0.23.1
3
+ Version: 0.24.0
4
4
  Summary: Automating the creation of Microkit System Description Files (SDF)
5
5
  Home-page: https://github.com/au-ts/microkit_sdf_gen
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,11 @@
1
+ csdfgen.cpython-310-darwin.so,sha256=tak-wJ49xs7EI70HYzISz5D1GtT0-nWq_tc0o-bogEo,880280
2
+ libcsdfgen.0.24.0.dylib,sha256=tak-wJ49xs7EI70HYzISz5D1GtT0-nWq_tc0o-bogEo,880280
3
+ libcsdfgen.0.dylib,sha256=tak-wJ49xs7EI70HYzISz5D1GtT0-nWq_tc0o-bogEo,880280
4
+ libcsdfgen.dylib,sha256=tak-wJ49xs7EI70HYzISz5D1GtT0-nWq_tc0o-bogEo,880280
5
+ sdfgen/__init__.py,sha256=_d7GGV8GhadIAEYP8uiJlez0yKtXnHMHdRkRzVMKS3c,143
6
+ sdfgen/module.py,sha256=XCdJ3HyUF7sPTYm-tw9BzE9O7fA-zuFGcA3jBwYTrP8,45235
7
+ sdfgen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ sdfgen-0.24.0.dist-info/METADATA,sha256=nLuya7UbzSfHITmPU9TH8LVmjl_3VBaugiabDiLcX2k,4549
9
+ sdfgen-0.24.0.dist-info/WHEEL,sha256=_pv0H8LoCli-e8qp7a-iaJu9G5ujyWuUOOaCzKYK2q0,109
10
+ sdfgen-0.24.0.dist-info/top_level.txt,sha256=M3gUW9vTMij10peQKgv1Qs0jZkdsk_PG0REFxuv6jNY,15
11
+ sdfgen-0.24.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (77.0.1)
2
+ Generator: setuptools (80.0.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-macosx_14_0_arm64
5
5
 
@@ -1,11 +0,0 @@
1
- csdfgen.cpython-310-darwin.so,sha256=MdQFu3nf3u3QrJQh73vOt05iXVX7AUbSgr7p0CkhMTM,863608
2
- libcsdfgen.0.23.1.dylib,sha256=MdQFu3nf3u3QrJQh73vOt05iXVX7AUbSgr7p0CkhMTM,863608
3
- libcsdfgen.0.dylib,sha256=MdQFu3nf3u3QrJQh73vOt05iXVX7AUbSgr7p0CkhMTM,863608
4
- libcsdfgen.dylib,sha256=MdQFu3nf3u3QrJQh73vOt05iXVX7AUbSgr7p0CkhMTM,863608
5
- sdfgen/__init__.py,sha256=_d7GGV8GhadIAEYP8uiJlez0yKtXnHMHdRkRzVMKS3c,143
6
- sdfgen/module.py,sha256=cSiUZFdti5PtaqWLWA2sEmtkqgE8Bf0qzPNDW2dcfZs,45021
7
- sdfgen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- sdfgen-0.23.1.dist-info/METADATA,sha256=p8l5x2a8uz7KUEl-HegH-RiJhMjOCgLalj-Tx9rRseo,4549
9
- sdfgen-0.23.1.dist-info/WHEEL,sha256=1X1blUr1y1anUHOCwm6bRhKWi7TMZhzykIFo1gXSZ00,109
10
- sdfgen-0.23.1.dist-info/top_level.txt,sha256=M3gUW9vTMij10peQKgv1Qs0jZkdsk_PG0REFxuv6jNY,15
11
- sdfgen-0.23.1.dist-info/RECORD,,