mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-21 01:07:18 +08:00
[vango] 将v85xx和v85xxp两个bsp整合到一个文件夹下
This commit is contained in:
parent
c5d16f28dd
commit
6a20471ee9
7
bsp/Vango/v85xx/Libraries/.ignore_format.yml
Normal file
7
bsp/Vango/v85xx/Libraries/.ignore_format.yml
Normal file
@ -0,0 +1,7 @@
|
||||
# files format check exclude path, please follow the instructions below to modify;
|
||||
# If you need to exclude an entire folder, add the folder path in dir_path;
|
||||
# If you need to exclude a file, add the path to the file in file_path.
|
||||
|
||||
dir_path:
|
||||
- CMSIS
|
||||
- VangoV85xx_standard_peripheral
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
@ -7,7 +7,7 @@
|
||||
* Date Author Notes
|
||||
* 2012-01-01 aozima first implementation.
|
||||
* 2021-09-21 zhuxw add vango v85xx spi drivers
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __DRV_SPI_H__
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
@ -7,7 +7,7 @@
|
||||
* Date Author Notes
|
||||
* 2021-01-04 iysheng first version
|
||||
* 2021-09-07 FuC Suit for Vango V85XX
|
||||
* 2021·09-12 ZhuXW fix UART5
|
||||
* 2021-09-12 ZhuXW fix UART5
|
||||
*/
|
||||
|
||||
#include <target.h>
|
||||
@ -121,7 +121,7 @@ void UART5_IRQHandler(void)
|
||||
}
|
||||
#endif /* BSP_USING_UART4 */
|
||||
|
||||
static const struct V85xx_uart uarts[] =
|
||||
static const struct V85xx_uart uarts[] =
|
||||
{
|
||||
#ifdef BSP_USING_UART0
|
||||
{
|
||||
@ -291,7 +291,7 @@ static void uart_isr(struct rt_serial_device *serial)
|
||||
RT_ASSERT(uart != RT_NULL);
|
||||
|
||||
if ((UART_GetINTStatus((UART_TypeDef *)uart->uart_periph, UART_INTSTS_RX) != RESET) &&
|
||||
(UART_GetFlag((UART_TypeDef *)uart->uart_periph, UART_FLAG_RXFULL) != RESET))
|
||||
(UART_GetFlag((UART_TypeDef *)uart->uart_periph, UART_FLAG_RXFULL) != RESET))
|
||||
{
|
||||
rt_hw_serial_isr(serial, RT_SERIAL_EVENT_RX_IND);
|
||||
/* Clear RXNE interrupt flag */
|
||||
@ -299,7 +299,7 @@ static void uart_isr(struct rt_serial_device *serial)
|
||||
}
|
||||
}
|
||||
|
||||
static const struct rt_uart_ops V85xx_uart_ops =
|
||||
static const struct rt_uart_ops V85xx_uart_ops =
|
||||
{
|
||||
V85xx_configure,
|
||||
V85xx_control,
|
||||
@ -313,7 +313,7 @@ int V85xx_hw_usart_init(void)
|
||||
int i;
|
||||
|
||||
|
||||
for (i = 0; i < sizeof(uarts) / sizeof(uarts[0]); i++)
|
||||
for (i = 0; i < sizeof(uarts) / sizeof(uarts[0]); i++)
|
||||
{
|
||||
uarts[i].serial->ops = &V85xx_uart_ops;
|
||||
uarts[i].serial->config = config;
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
7
bsp/Vango/v85xxp/Libraries/.ignore_format.yml
Normal file
7
bsp/Vango/v85xxp/Libraries/.ignore_format.yml
Normal file
@ -0,0 +1,7 @@
|
||||
# files format check exclude path, please follow the instructions below to modify;
|
||||
# If you need to exclude an entire folder, add the folder path in dir_path;
|
||||
# If you need to exclude a file, add the path to the file in file_path.
|
||||
|
||||
dir_path:
|
||||
- CMSIS
|
||||
- VangoV85xxP_standard_peripheral
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user