diff --git a/tests/periph_dma/Makefile b/tests/periph_dma/Makefile new file mode 100644 index 0000000000..9b750d5074 --- /dev/null +++ b/tests/periph_dma/Makefile @@ -0,0 +1,5 @@ +include ../Makefile.tests_common + +FEATURES_REQUIRED = periph_dma + +include $(RIOTBASE)/Makefile.include diff --git a/tests/periph_dma/main.c b/tests/periph_dma/main.c new file mode 100644 index 0000000000..c297ce8b9a --- /dev/null +++ b/tests/periph_dma/main.c @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2018 OTA keys S.A. + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup tests + * @{ + * + * @file + * @brief Dummy test application for DMA peripheral + * + * @author Vincent Dupont + * @} + */ + +#include + +int main(void) +{ + puts("DMA dummy test app"); + + return 0; +}