/* * Copyright (C) 2021 Gerson Fernando Budke * * 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 Main test application for ATxmega * * @author Gerson Fernando Budke * * @} */ #include "stdio.h" #include "cpu_tests.h" int main(void) { puts("Start XMEGA tests"); #if defined(MODULE_ATXMEGA_EBI) puts("Start EBI tests"); ebi_tests(); #endif puts("Finished XMEGA tests"); return 0; }