We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
legacy_export_analyzer
I hope submitting separate issues for these is helpful to keep track, and not annoying!!!
from saleae import automation with automation.Manager.connect() as manager: device_configuration = automation.LogicDeviceConfiguration( enabled_digital_channels=[0, 1, 2, 3], digital_sample_rate=10_000_000 ) capture_configuration = automation.CaptureConfiguration( capture_mode=automation.TimedCaptureMode(duration_seconds=1.0) ) with manager.start_capture( device_id='F4241', device_configuration=device_configuration, capture_configuration=capture_configuration) as capture: capture.wait() spi_analyzer = capture.add_analyzer('SPI', label=f'Test Analyzer', settings={ 'MISO': 0, 'Clock': 1, 'Enable': 2, 'Bits per Transfer': '8 Bits per Transfer (Standard)' }) capture.legacy_export_analyzer("non_existent_directory/file.csv", spi_analyzer, automation.RadixType.HEXADECIMAL)
The Logic GUI shows a popup message which says "export complete":
And no Python exception is thrown.
As far as I can tell, nothing was actually exported.
Logic version information:
{"Environment":"production","Branch":"master","Commit":"a59be960fd362c11b73b4cb5105f39676631e868","Version":"2.4.14","AutomationVersion":"1.0.0","MachineID":"19aa4ba2-11aa-4b08-86cc-ecac4ec55058","PID":3572,"LaunchId":"1dd197ae-82fd-4a00-b21f-a8744627229e","Architecture":"x64"}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I hope submitting separate issues for these is helpful to keep track, and not annoying!!!
The Logic GUI shows a popup message which says "export complete":
And no Python exception is thrown.
As far as I can tell, nothing was actually exported.
Logic version information:
The text was updated successfully, but these errors were encountered: