diff --git a/tests/board_calliope-mini/Makefile b/tests/board_calliope-mini/Makefile deleted file mode 100644 index efec785ad5..0000000000 --- a/tests/board_calliope-mini/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -BOARD ?= calliope-mini -include ../Makefile.tests_common - -# This test application is for the Calliope mini only -BOARD_WHITELIST := calliope-mini - -# We want to test the Calliope mini support module -USEMODULE += microbit - -include $(RIOTBASE)/Makefile.include diff --git a/tests/board_calliope-mini/README.md b/tests/board_calliope-mini/README.md deleted file mode 100644 index 57c8b043f1..0000000000 --- a/tests/board_calliope-mini/README.md +++ /dev/null @@ -1,13 +0,0 @@ -Background -========== -The Calliope mini board comes with its own little utility library, that makes -some of the boards unique feature like the 5x5 LED matrix usable to RIOT. - -This test application is therefore specialized for only that board and its -purpose is to test and showcase the board specific utility library. - - -Expected result -=============== -When running this application, you should see the string -`Welcome RIOT @ Calliope mini!` scrolling by on the boards LED matrix. diff --git a/tests/board_calliope-mini/main.c b/tests/board_calliope-mini/main.c deleted file mode 100644 index f1fd230950..0000000000 --- a/tests/board_calliope-mini/main.c +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (C) 2016 Freie Universität Berlin - * - * 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 Test the Calliope mini support library - * - * @author Hauke Petersen - * - * @} - */ - -#include - -#include "timex.h" -#include "microbit.h" - -#define DELAY (120 * US_PER_MS) - -int main(void) -{ - puts("Welcome to RIOT!\n"); - puts("Please refer to the README.md for more information about this app\n"); - - microbit_matrix_init(); - - while (1) { - microbit_matrix_shift_str("Welcome RIOT @ Calliope mini!", DELAY); - } - - return 0; -} diff --git a/tests/board_microbit/Makefile b/tests/board_microbit/Makefile index bd9b8a08b2..8f543229c9 100644 --- a/tests/board_microbit/Makefile +++ b/tests/board_microbit/Makefile @@ -3,7 +3,7 @@ BOARD ?= microbit include ../Makefile.tests_common # This test application is for the BBC micro:bit only -BOARD_WHITELIST := microbit microbit-v2 +BOARD_WHITELIST := microbit microbit-v2 calliope-mini # We want to test the microbit support module USEMODULE += microbit diff --git a/tests/board_microbit/app.config.test b/tests/board_microbit/app.config.test new file mode 100644 index 0000000000..a17624a78b --- /dev/null +++ b/tests/board_microbit/app.config.test @@ -0,0 +1,3 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MICROBIT=y