mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
28 lines
533 B
C
28 lines
533 B
C
|
/*
|
||
|
* Copyright 2021 MindMotion Microelectronics Co., Ltd.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
#ifndef __BOARD_INIT_H__
|
||
|
#define __BOARD_INIT_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "hal_common.h"
|
||
|
#include "hal_gpio.h"
|
||
|
#include "hal_uart.h"
|
||
|
|
||
|
#include "clock_init.h"
|
||
|
#include "pin_init.h"
|
||
|
|
||
|
/* DEBUG UART. */
|
||
|
#define BOARD_DEBUG_UART_PORT UART1
|
||
|
#define BOARD_DEBUG_UART_BAUDRATE 115200u
|
||
|
#define BOARD_DEBUG_UART_FREQ CLOCK_APB2_FREQ
|
||
|
|
||
|
void BOARD_Init(void);
|
||
|
|
||
|
#endif /* __BOARD_INIT_H__ */
|