├── .checkpatch.conf ├── .ci.yml ├── .github └── workflows │ └── pcie-comm-server.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── docs ├── .gitattributes ├── .gitignore ├── Makefile ├── requirements.txt └── source │ ├── basics.md │ ├── conf.py │ ├── img │ ├── pcie-topology.png │ ├── perf-sandwitch.png │ ├── speedscope-trace.png │ ├── warp-pipe--basic-flow.svg │ ├── warp-pipe--diagram.svg │ ├── warp-pipe--testing-flow.svg │ └── wireshark-pcap.png │ ├── index.md │ ├── introduction.md │ ├── library.md │ ├── pcie.md │ ├── performance_analysis.md │ ├── qemu.md │ ├── samples.md │ ├── twister.md │ └── wireshark.md ├── inc └── warppipe │ ├── client.h │ ├── config.h │ ├── crc.h │ ├── proto.h │ ├── server.h │ └── yaml_configspace.h ├── memory-mock ├── CMakeLists.txt └── main.c ├── scripts └── coverage.sh ├── src ├── client.c ├── crc.c ├── proto.c ├── server.c └── yaml_configspace.c ├── tests ├── CMakeLists.txt ├── common.cc ├── common.h ├── test_client.cc ├── test_configspace.cc ├── test_crc.cc └── test_server.cc ├── warp-pipe.pc.in ├── zephyr-samples ├── CMakeLists.txt ├── Kconfig ├── common │ ├── common.c │ └── common.h ├── drivers │ ├── CMakeLists.txt │ ├── Kconfig │ └── dma │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── dma_emul.c ├── dts │ └── bindings │ │ └── dma │ │ └── zephyr,dma-emul.yaml ├── pcie_dma │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.md │ ├── boards │ │ └── native_sim.overlay │ ├── prj.conf │ └── src │ │ └── main.c ├── pcie_ivshmem │ ├── CMakeLists.txt │ ├── README.md │ ├── boards │ │ └── qemu_cortex_a53.overlay │ ├── prj.conf │ └── src │ │ └── main.c ├── pcie_native │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.md │ ├── prj.conf │ └── src │ │ └── main.c ├── pcie_native_thread │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.md │ ├── prj.conf │ └── src │ │ └── main.c ├── pcie_nvme │ ├── CMakeLists.txt │ ├── README.md │ ├── boards │ │ └── qemu_x86_64.overlay │ ├── prj.conf │ └── src │ │ └── main.c ├── pcie_pipe │ ├── CMakeLists.txt │ ├── README.md │ ├── prj.conf │ └── src │ │ └── main.c ├── pcie_scan │ ├── CMakeLists.txt │ ├── README.md │ ├── prj.conf │ └── src │ │ └── main.c ├── warp-pipe-zephyr.yml ├── west-commands.yml └── west_commands │ └── twister_cmd.py ├── zephyr-tests ├── CMakeLists.txt ├── prj.conf ├── src │ └── main.cpp └── testcase.yaml └── zephyr └── module.yml /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/.ci.yml -------------------------------------------------------------------------------- /.github/workflows/pcie-comm-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/.github/workflows/pcie-comm-server.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- 1 | *.png binary 2 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.pyc 3 | *.sw* 4 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/basics.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/img/pcie-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/pcie-topology.png -------------------------------------------------------------------------------- /docs/source/img/perf-sandwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/perf-sandwitch.png -------------------------------------------------------------------------------- /docs/source/img/speedscope-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/speedscope-trace.png -------------------------------------------------------------------------------- /docs/source/img/warp-pipe--basic-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/warp-pipe--basic-flow.svg -------------------------------------------------------------------------------- /docs/source/img/warp-pipe--diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/warp-pipe--diagram.svg -------------------------------------------------------------------------------- /docs/source/img/warp-pipe--testing-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/warp-pipe--testing-flow.svg -------------------------------------------------------------------------------- /docs/source/img/wireshark-pcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/img/wireshark-pcap.png -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/introduction.md -------------------------------------------------------------------------------- /docs/source/library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/library.md -------------------------------------------------------------------------------- /docs/source/pcie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/pcie.md -------------------------------------------------------------------------------- /docs/source/performance_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/performance_analysis.md -------------------------------------------------------------------------------- /docs/source/qemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/qemu.md -------------------------------------------------------------------------------- /docs/source/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/samples.md -------------------------------------------------------------------------------- /docs/source/twister.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/twister.md -------------------------------------------------------------------------------- /docs/source/wireshark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/docs/source/wireshark.md -------------------------------------------------------------------------------- /inc/warppipe/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/inc/warppipe/client.h -------------------------------------------------------------------------------- /inc/warppipe/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/inc/warppipe/config.h -------------------------------------------------------------------------------- /inc/warppipe/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/inc/warppipe/crc.h -------------------------------------------------------------------------------- /inc/warppipe/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/inc/warppipe/proto.h -------------------------------------------------------------------------------- /inc/warppipe/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/inc/warppipe/server.h -------------------------------------------------------------------------------- /inc/warppipe/yaml_configspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/inc/warppipe/yaml_configspace.h -------------------------------------------------------------------------------- /memory-mock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/memory-mock/CMakeLists.txt -------------------------------------------------------------------------------- /memory-mock/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/memory-mock/main.c -------------------------------------------------------------------------------- /scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/scripts/coverage.sh -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/src/client.c -------------------------------------------------------------------------------- /src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/src/crc.c -------------------------------------------------------------------------------- /src/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/src/proto.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/src/server.c -------------------------------------------------------------------------------- /src/yaml_configspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/src/yaml_configspace.c -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/common.cc -------------------------------------------------------------------------------- /tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/common.h -------------------------------------------------------------------------------- /tests/test_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/test_client.cc -------------------------------------------------------------------------------- /tests/test_configspace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/test_configspace.cc -------------------------------------------------------------------------------- /tests/test_crc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/test_crc.cc -------------------------------------------------------------------------------- /tests/test_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/tests/test_server.cc -------------------------------------------------------------------------------- /warp-pipe.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/warp-pipe.pc.in -------------------------------------------------------------------------------- /zephyr-samples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(drivers) 2 | -------------------------------------------------------------------------------- /zephyr-samples/Kconfig: -------------------------------------------------------------------------------- 1 | rsource "drivers/Kconfig" 2 | -------------------------------------------------------------------------------- /zephyr-samples/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/common/common.c -------------------------------------------------------------------------------- /zephyr-samples/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/common/common.h -------------------------------------------------------------------------------- /zephyr-samples/drivers/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory_ifdef(CONFIG_DMA dma) 2 | -------------------------------------------------------------------------------- /zephyr-samples/drivers/Kconfig: -------------------------------------------------------------------------------- 1 | menu "Drivers" 2 | rsource "dma/Kconfig" 3 | endmenu 4 | -------------------------------------------------------------------------------- /zephyr-samples/drivers/dma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/drivers/dma/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/drivers/dma/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/drivers/dma/Kconfig -------------------------------------------------------------------------------- /zephyr-samples/drivers/dma/dma_emul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/drivers/dma/dma_emul.c -------------------------------------------------------------------------------- /zephyr-samples/dts/bindings/dma/zephyr,dma-emul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/dts/bindings/dma/zephyr,dma-emul.yaml -------------------------------------------------------------------------------- /zephyr-samples/pcie_dma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_dma/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_dma/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_dma/Kconfig -------------------------------------------------------------------------------- /zephyr-samples/pcie_dma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_dma/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_dma/boards/native_sim.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_dma/boards/native_sim.overlay -------------------------------------------------------------------------------- /zephyr-samples/pcie_dma/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_dma/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_dma/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/pcie_ivshmem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_ivshmem/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_ivshmem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_ivshmem/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_ivshmem/boards/qemu_cortex_a53.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_ivshmem/boards/qemu_cortex_a53.overlay -------------------------------------------------------------------------------- /zephyr-samples/pcie_ivshmem/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_ivshmem/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_ivshmem/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_ivshmem/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/pcie_native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_native/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native/Kconfig -------------------------------------------------------------------------------- /zephyr-samples/pcie_native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_native/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_native/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/pcie_native_thread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native_thread/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_native_thread/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native_thread/Kconfig -------------------------------------------------------------------------------- /zephyr-samples/pcie_native_thread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native_thread/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_native_thread/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native_thread/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_native_thread/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_native_thread/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/pcie_nvme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_nvme/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_nvme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_nvme/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_nvme/boards/qemu_x86_64.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_nvme/boards/qemu_x86_64.overlay -------------------------------------------------------------------------------- /zephyr-samples/pcie_nvme/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_nvme/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_nvme/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_nvme/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/pcie_pipe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_pipe/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_pipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_pipe/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_pipe/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_pipe/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_pipe/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_pipe/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/pcie_scan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_scan/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-samples/pcie_scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_scan/README.md -------------------------------------------------------------------------------- /zephyr-samples/pcie_scan/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_scan/prj.conf -------------------------------------------------------------------------------- /zephyr-samples/pcie_scan/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/pcie_scan/src/main.c -------------------------------------------------------------------------------- /zephyr-samples/warp-pipe-zephyr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/warp-pipe-zephyr.yml -------------------------------------------------------------------------------- /zephyr-samples/west-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/west-commands.yml -------------------------------------------------------------------------------- /zephyr-samples/west_commands/twister_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-samples/west_commands/twister_cmd.py -------------------------------------------------------------------------------- /zephyr-tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-tests/CMakeLists.txt -------------------------------------------------------------------------------- /zephyr-tests/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-tests/prj.conf -------------------------------------------------------------------------------- /zephyr-tests/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-tests/src/main.cpp -------------------------------------------------------------------------------- /zephyr-tests/testcase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr-tests/testcase.yaml -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antmicro/warp-pipe/HEAD/zephyr/module.yml --------------------------------------------------------------------------------