1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-19 11:33:51 +01:00
RIOT/boards/common/silabs/include/board_common.h
2025-07-18 14:23:37 +02:00

38 lines
620 B
C

/*
* SPDX-FileCopyrightText: 2018 Bas Stottelaar <basstottelaar@gmail.com>
* SPDX-License-Identifier: LGPL-2.1-only
*/
#pragma once
/**
* @ingroup boards_common_silabs
*
* @{
*
* @file
* @brief Common board definitions for the Silicon Labs developtment
* boards.
*
* @author Bas Stottelaar <basstottelaar@gmail.com>
*/
#include "board.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Initialize common board features.
*
* It currently initializes (if available) the AEM, BC, LEDs and PIC.
*/
void board_common_init(void);
#ifdef __cplusplus
}
#endif
/** @} */