Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions saleae/saleae.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ def launch_logic(timeout=5):
raise OSError("Failed to open Logic software. Is 'Logic' in your PATH?")
elif platform.system() == 'Windows':
p = os.path.join("C:", "Program Files", "Saleae Inc", "Logic.exe")
if not os.path.exists(p):
p = os.path.join("C:", "Program Files", "Saleae LLC", "Logic.exe")
os.startfile(p)
else:
raise NotImplementedError("Unknown platform " + platform.system())
Expand Down