├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── adat ├── __init__.py ├── nrzidecoder.py ├── receiver.py └── transmitter.py ├── doc ├── adat.rst ├── conf.py └── generate_doc.py ├── generate.py ├── setup.py └── tests ├── nrzi-decoder-bench-44100.gtkw ├── nrzi-decoder-bench-48000.gtkw ├── nrzidecoder-bench.py ├── receiver-bench.py ├── receiver-smoke-test-44100.gtkw ├── receiver-smoke-test-48000.gtkw ├── testdata.py ├── transmitter-bench.py └── transmitter-smoke-test-48000.gtkw /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .vscode/ 3 | **/.eggs/** 4 | env/ 5 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/README.md -------------------------------------------------------------------------------- /adat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/adat/__init__.py -------------------------------------------------------------------------------- /adat/nrzidecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/adat/nrzidecoder.py -------------------------------------------------------------------------------- /adat/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/adat/receiver.py -------------------------------------------------------------------------------- /adat/transmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/adat/transmitter.py -------------------------------------------------------------------------------- /doc/adat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/doc/adat.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/generate_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/doc/generate_doc.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/generate.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/setup.py -------------------------------------------------------------------------------- /tests/nrzi-decoder-bench-44100.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/nrzi-decoder-bench-44100.gtkw -------------------------------------------------------------------------------- /tests/nrzi-decoder-bench-48000.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/nrzi-decoder-bench-48000.gtkw -------------------------------------------------------------------------------- /tests/nrzidecoder-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/nrzidecoder-bench.py -------------------------------------------------------------------------------- /tests/receiver-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/receiver-bench.py -------------------------------------------------------------------------------- /tests/receiver-smoke-test-44100.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/receiver-smoke-test-44100.gtkw -------------------------------------------------------------------------------- /tests/receiver-smoke-test-48000.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/receiver-smoke-test-48000.gtkw -------------------------------------------------------------------------------- /tests/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/testdata.py -------------------------------------------------------------------------------- /tests/transmitter-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/transmitter-bench.py -------------------------------------------------------------------------------- /tests/transmitter-smoke-test-48000.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amaranth-farm/adat-core/HEAD/tests/transmitter-smoke-test-48000.gtkw --------------------------------------------------------------------------------