2017-11-21 16:22:33 +01:00
|
|
|
/*
|
2018-10-26 10:26:59 +02:00
|
|
|
* Copyright (C) 2017 Freie Universität Berlin
|
2017-11-21 16:22:33 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-02-04 10:32:03 +01:00
|
|
|
* @ingroup boards_common_nrf52
|
2017-11-30 23:36:27 +01:00
|
|
|
* @brief Shared files and configuration for all nRF52 boards.
|
2017-11-21 16:22:33 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Shared configuration for the all nRF52-based boards
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOARD_COMMON_H
|
|
|
|
#define BOARD_COMMON_H
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initialize the platform
|
|
|
|
*/
|
|
|
|
void board_init(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* BOARD_COMMON_H */
|
|
|
|
/** @} */
|