mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
37 lines
646 B
C
37 lines
646 B
C
/*
|
|
* Copyright (C) 2021 Gerson Fernando Budke <nandojve@gmail.com>
|
|
*
|
|
* 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 <nandojve@gmail.com>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#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;
|
|
}
|