├── .github └── workflows │ └── main.yml ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── include ├── dmabuffer.h └── dmactrl.h └── src ├── dmabuffer.cpp └── dmactrl.cpp /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/README.md -------------------------------------------------------------------------------- /include/dmabuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/include/dmabuffer.h -------------------------------------------------------------------------------- /include/dmactrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/include/dmactrl.h -------------------------------------------------------------------------------- /src/dmabuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/src/dmabuffer.cpp -------------------------------------------------------------------------------- /src/dmactrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtortone/libaxidma/HEAD/src/dmactrl.cpp --------------------------------------------------------------------------------