mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 17:21:56 +00:00
This patch adds basic support and for the STM32F769I-DISCO board with GPIO, USART support. Two USARTs are enabled.The GPIOs are configured for the 4 LEDs and one button on the board. Signed-off-by: Yong Jin <jinyong.iot@foxmail.com>
14 lines
173 B
C
14 lines
173 B
C
/*
|
|
* Copyright (c) 2018 Yong Jin
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_BOARD_H
|
|
#define __INC_BOARD_H
|
|
|
|
|
|
#include <soc.h>
|
|
|
|
#endif /* __INC_BOARD_H */
|