2018-06-17 12:44:11 +02:00
|
|
|
/*
|
2019-09-28 10:42:21 +02:00
|
|
|
* Copyright (C) 2018-2019 Bas Stottelaar <basstottelaar@gmail.com>
|
2018-06-17 12:44:11 +02:00
|
|
|
*
|
|
|
|
* 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 application for EFM32 specific features.
|
|
|
|
*
|
|
|
|
* @author Bas Stottelaar <basstottelaar@gmail.com>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2021-03-21 20:03:26 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2018-06-17 12:44:11 +02:00
|
|
|
#include "periph/uart.h"
|
|
|
|
|
2019-09-28 10:42:21 +02:00
|
|
|
#if EFM32_LEUART_ENABLED
|
|
|
|
#error "Expected EFM32_LEUART_ENABLED feature to be disabled."
|
|
|
|
#endif
|
|
|
|
|
2018-06-17 12:44:11 +02:00
|
|
|
int main(void)
|
|
|
|
{
|
2019-10-16 21:39:45 +02:00
|
|
|
puts("Board booted, with some EFM32 features enabled or disabled.");
|
2018-06-17 12:44:11 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|