Add configuration, documentation, pinmux, fixup and dts support for STM32F103x8 based Minimum System Development board. Signed-off-by: Siddharth Chandrasekaran <siddharth@embedjournal.com>
16 lines
256 B
C
16 lines
256 B
C
/*
|
|
* Copyright (c) 2017, embedjournal.com
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_BOARD_H
|
|
#define __INC_BOARD_H
|
|
|
|
#include <soc.h>
|
|
|
|
/* On board LED */
|
|
#define LED0_GPIO_PORT "GPIOB"
|
|
#define LED0_GPIO_PIN 12
|
|
|
|
#endif /* __INC_BOARD_H */
|