コード例 #1
0
ファイル: __init__.py プロジェクト: willtuna/PowerAnalysisLab
def capture_gui():
    """Open the CWCapture GUI, blocking until it's closed.

    Note that opening the GUI does not use any existing scope/target/project objects that were made using the API.

    Known issue: after finishing this function, many API calls don't work from the command line, as ChipWhisperer
    then relies on PyQT for timers and other utilities.
    """
    from chipwhisperer.capture.ui.CWCaptureGUI import main
    main()
コード例 #2
0
ファイル: __init__.py プロジェクト: willtuna/PowerAnalysisLab
def analyzer_gui():
    """Open the Analyzer GUI, blocking until it's closed.
    """
    from chipwhisperer.analyzer.ui.CWAnalyzerGUI import main
    main()
コード例 #3
0
def analyzer_gui():
    from chipwhisperer.analyzer.ui.CWAnalyzerGUI import main
    main()
コード例 #4
0
def capture_gui():
    from chipwhisperer.capture.ui.CWCaptureGUI import main
    main()
コード例 #5
0
ファイル: __init__.py プロジェクト: phonchi/chipwhisperer
def analyzer_gui():
    from chipwhisperer.analyzer.ui.CWAnalyzerGUI import main
    main()
コード例 #6
0
ファイル: __init__.py プロジェクト: phonchi/chipwhisperer
def capture_gui():
    from chipwhisperer.capture.ui.CWCaptureGUI import main
    main()