Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
ba1e1886
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
未验证
提交
ba1e1886
编写于
11月 10, 2018
作者:
B
Bernard Xiong
提交者:
GitHub
11月 10, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1959 from yangjie11/fix
[bsp]fixed drv_usart.c because f411xE have no USART3
上级
d0473071
c79d9289
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
22 addition
and
6 deletion
+22
-6
bsp/stm32f4xx-HAL/drivers/drv_usart.c
bsp/stm32f4xx-HAL/drivers/drv_usart.c
+22
-6
未找到文件。
bsp/stm32f4xx-HAL/drivers/drv_usart.c
浏览文件 @
ba1e1886
...
...
@@ -251,6 +251,7 @@ void USART6_IRQHandler(void)
void
HAL_UART_MspInit
(
UART_HandleTypeDef
*
uartHandle
)
{
GPIO_InitTypeDef
GPIO_InitStruct
;
#ifdef BSP_USING_UART1
if
(
uartHandle
->
Instance
==
USART1
)
{
/* USART1 clock enable */
...
...
@@ -267,7 +268,9 @@ void HAL_UART_MspInit(UART_HandleTypeDef *uartHandle)
GPIO_InitStruct
.
Alternate
=
GPIO_AF7_USART1
;
HAL_GPIO_Init
(
GPIOA
,
&
GPIO_InitStruct
);
}
else
if
(
uartHandle
->
Instance
==
USART2
)
#endif
/* BSP_USING_UART1 */
#ifdef BSP_USING_UART2
if
(
uartHandle
->
Instance
==
USART2
)
{
/* USART2 clock enable */
__HAL_RCC_USART2_CLK_ENABLE
();
...
...
@@ -283,7 +286,9 @@ void HAL_UART_MspInit(UART_HandleTypeDef *uartHandle)
GPIO_InitStruct
.
Alternate
=
GPIO_AF7_USART2
;
HAL_GPIO_Init
(
GPIOA
,
&
GPIO_InitStruct
);
}
else
if
(
uartHandle
->
Instance
==
USART3
)
#endif
/* BSP_USING_UART2 */
#ifdef BSP_USING_UART3
if
(
uartHandle
->
Instance
==
USART3
)
{
/* USART3 clock enable */
__HAL_RCC_USART3_CLK_ENABLE
();
...
...
@@ -299,7 +304,9 @@ void HAL_UART_MspInit(UART_HandleTypeDef *uartHandle)
GPIO_InitStruct
.
Alternate
=
GPIO_AF7_USART3
;
HAL_GPIO_Init
(
GPIOB
,
&
GPIO_InitStruct
);
}
else
if
(
uartHandle
->
Instance
==
USART6
)
#endif
/* BSP_USING_UART3 */
#ifdef BSP_USING_UART6
if
(
uartHandle
->
Instance
==
USART6
)
{
/* USART6 clock enable */
__HAL_RCC_USART6_CLK_ENABLE
();
...
...
@@ -315,10 +322,12 @@ void HAL_UART_MspInit(UART_HandleTypeDef *uartHandle)
GPIO_InitStruct
.
Alternate
=
GPIO_AF8_USART6
;
HAL_GPIO_Init
(
GPIOC
,
&
GPIO_InitStruct
);
}
#endif
/* BSP_USING_UART6 */
}
void
HAL_UART_MspDeInit
(
UART_HandleTypeDef
*
uartHandle
)
{
#ifdef BSP_USING_UART1
if
(
uartHandle
->
Instance
==
USART1
)
{
/* Peripheral clock disable */
...
...
@@ -329,7 +338,9 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef *uartHandle)
*/
HAL_GPIO_DeInit
(
GPIOA
,
GPIO_PIN_9
|
GPIO_PIN_10
);
}
else
if
(
uartHandle
->
Instance
==
USART2
)
#endif
/* BSP_USING_UART1 */
#ifdef BSP_USING_UART2
if
(
uartHandle
->
Instance
==
USART2
)
{
/* Peripheral clock disable */
__HAL_RCC_USART2_CLK_DISABLE
();
...
...
@@ -339,7 +350,9 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef *uartHandle)
*/
HAL_GPIO_DeInit
(
GPIOA
,
GPIO_PIN_2
|
GPIO_PIN_3
);
}
else
if
(
uartHandle
->
Instance
==
USART3
)
#endif
/* BSP_USING_UART2 */
#ifdef BSP_USING_UART3
if
(
uartHandle
->
Instance
==
USART3
)
{
/* Peripheral clock disable */
__HAL_RCC_USART3_CLK_DISABLE
();
...
...
@@ -349,7 +362,9 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef *uartHandle)
*/
HAL_GPIO_DeInit
(
GPIOB
,
GPIO_PIN_10
|
GPIO_PIN_11
);
}
else
if
(
uartHandle
->
Instance
==
USART6
)
#endif
/* BSP_USING_UART3 */
#ifdef BSP_USING_UART6
if
(
uartHandle
->
Instance
==
USART6
)
{
/* Peripheral clock disable */
__HAL_RCC_USART6_CLK_DISABLE
();
...
...
@@ -359,6 +374,7 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef *uartHandle)
*/
HAL_GPIO_DeInit
(
GPIOC
,
GPIO_PIN_6
|
GPIO_PIN_7
);
}
#endif
/* BSP_USING_UART6 */
}
int
hw_usart_init
(
void
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录