├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTING.rst ├── LICENSE.txt ├── README.rst ├── azure-pipelines.yml ├── chapter10 ├── __init__.py ├── analog.py ├── arinc429.py ├── c10.py ├── computer.py ├── discrete.py ├── ethernet.py ├── i1394.py ├── image.py ├── message.py ├── ms1553.py ├── packet.py ├── parallel.py ├── pcm.py ├── time.py ├── uart.py ├── util.py └── video.py ├── conftest.py ├── docs ├── Makefile ├── make.bat └── source │ ├── api │ ├── datatypes.rst │ ├── index.rst │ └── util.rst │ ├── conf.py │ ├── index.rst │ └── samples │ ├── allbus.rst │ ├── index.rst │ └── stat.rst ├── pdm.lock ├── pyproject.toml └── tests ├── conftest.py ├── discrete.c10 ├── ethernet.c10 ├── event.c10 ├── fixtures.py ├── pcm.c10 ├── performance_test.py ├── sample.c10 ├── test_sanity.py └── unit ├── test_analog.py ├── test_arinc429.py ├── test_c10.py ├── test_computer.py ├── test_discrete.py ├── test_ethernet.py ├── test_message.py ├── test_ms1553.py ├── test_packet.py ├── test_pcm.py ├── test_time.py ├── test_uart.py └── test_video.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/README.rst -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /chapter10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/__init__.py -------------------------------------------------------------------------------- /chapter10/analog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/analog.py -------------------------------------------------------------------------------- /chapter10/arinc429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/arinc429.py -------------------------------------------------------------------------------- /chapter10/c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/c10.py -------------------------------------------------------------------------------- /chapter10/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/computer.py -------------------------------------------------------------------------------- /chapter10/discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/discrete.py -------------------------------------------------------------------------------- /chapter10/ethernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/ethernet.py -------------------------------------------------------------------------------- /chapter10/i1394.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/i1394.py -------------------------------------------------------------------------------- /chapter10/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/image.py -------------------------------------------------------------------------------- /chapter10/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/message.py -------------------------------------------------------------------------------- /chapter10/ms1553.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/ms1553.py -------------------------------------------------------------------------------- /chapter10/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/packet.py -------------------------------------------------------------------------------- /chapter10/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/parallel.py -------------------------------------------------------------------------------- /chapter10/pcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/pcm.py -------------------------------------------------------------------------------- /chapter10/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/time.py -------------------------------------------------------------------------------- /chapter10/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/uart.py -------------------------------------------------------------------------------- /chapter10/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/util.py -------------------------------------------------------------------------------- /chapter10/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/chapter10/video.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/api/datatypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/api/datatypes.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/api/util.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/samples/allbus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/samples/allbus.rst -------------------------------------------------------------------------------- /docs/source/samples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/samples/index.rst -------------------------------------------------------------------------------- /docs/source/samples/stat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/docs/source/samples/stat.rst -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/discrete.c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/discrete.c10 -------------------------------------------------------------------------------- /tests/ethernet.c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/ethernet.c10 -------------------------------------------------------------------------------- /tests/event.c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/event.c10 -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/pcm.c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/pcm.c10 -------------------------------------------------------------------------------- /tests/performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/performance_test.py -------------------------------------------------------------------------------- /tests/sample.c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/sample.c10 -------------------------------------------------------------------------------- /tests/test_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/test_sanity.py -------------------------------------------------------------------------------- /tests/unit/test_analog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_analog.py -------------------------------------------------------------------------------- /tests/unit/test_arinc429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_arinc429.py -------------------------------------------------------------------------------- /tests/unit/test_c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_c10.py -------------------------------------------------------------------------------- /tests/unit/test_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_computer.py -------------------------------------------------------------------------------- /tests/unit/test_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_discrete.py -------------------------------------------------------------------------------- /tests/unit/test_ethernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_ethernet.py -------------------------------------------------------------------------------- /tests/unit/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_message.py -------------------------------------------------------------------------------- /tests/unit/test_ms1553.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_ms1553.py -------------------------------------------------------------------------------- /tests/unit/test_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_packet.py -------------------------------------------------------------------------------- /tests/unit/test_pcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_pcm.py -------------------------------------------------------------------------------- /tests/unit/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_time.py -------------------------------------------------------------------------------- /tests/unit/test_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_uart.py -------------------------------------------------------------------------------- /tests/unit/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atac/pychapter10/HEAD/tests/unit/test_video.py --------------------------------------------------------------------------------