Skip to content

Commit

Permalink
Add adistream CLI tool
Browse files Browse the repository at this point in the history
Add adistream CLI tool to support data generation
and streaming for tx devices like DACs.
Update doc to include new tools optional
dependency.
Add doc page for tools.

Signed-off-by: SGudla <[email protected]>
  • Loading branch information
SaikiranGudla committed Jan 4, 2024
1 parent 8bcfac1 commit e0e8d1f
Show file tree
Hide file tree
Showing 8 changed files with 431 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
include LICENSE
include README.md
include adi/*
include adi/tools/*

exclude setup.cfg

Expand Down
5 changes: 5 additions & 0 deletions adi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,10 @@
except ImportError:
pass

try:
from adi.tools.adistream import run_adi_stream
except ImportError:
pass

__version__ = "0.0.17"
name = "Analog Devices Hardware Interfaces"
3 changes: 3 additions & 0 deletions adi/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Copyright (C) 2023-2024 Analog Devices, Inc.
#
# SPDX short identifier: ADIBSD
Loading

0 comments on commit e0e8d1f

Please sign in to comment.