From ce782b4cf882bbeb78e771b5806f49b4b3fed9f3 Mon Sep 17 00:00:00 2001 From: Vincent Dupont Date: Wed, 3 Jan 2018 14:48:30 +0100 Subject: [PATCH] tests: add a dummy app to build DMA --- tests/periph_dma/Makefile | 5 +++++ tests/periph_dma/main.c | 27 +++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 tests/periph_dma/Makefile create mode 100644 tests/periph_dma/main.c 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; +}