mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-20 03:53:49 +01:00
39 lines
946 B
C
39 lines
946 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015 TriaGnoSys GmbH
|
|
* SPDX-FileCopyrightText: 2017 Alexander Kurth, Sören Tempel, Tristan Bruns
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup boards_bluepill_stm32f103c8
|
|
*
|
|
* This board can be bought very cheaply on sides like eBay or
|
|
* AliExpress. Although the MCU nominally has 64 KiB ROM, most of them
|
|
* have 128 KiB ROM. For more information see:
|
|
* https://web.archive.org/web/20190527040051/http://wiki.stm32duino.com/index.php?title=Blue_Pill
|
|
*
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Peripheral MCU configuration for the bluepill board
|
|
*
|
|
* @author Víctor Ariño <victor.arino@triagnosys.com>
|
|
* @author Sören Tempel <tempel@uni-bremen.de>
|
|
* @author Tristan Bruns <tbruns@uni-bremen.de>
|
|
* @author Alexander Kurth <kurth1@uni-bremen.de>
|
|
*/
|
|
|
|
#include "board_common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|