Skip to content

Commit 96a125c

Browse files
authored
[bsp] [stm32] 添加鹿小班STM32H723开发板的BSP (#10842)
* [bsp] [stm32] 添加鹿小班STM32H723开发板的BSP * fix(bsp): 修正链接脚本中的拼写错误并启用环境变量配置 修复链接脚本中'excetion'拼写错误为'execution' 启用rtconfig.py中的环境变量配置选项 * fix(bsp): 重新添加开发板IAR、GCC链接脚本 链接脚本中包含了所有寄存器,除flash与主sarm外其余寄存器已注释 * refactor(bsp): 移除冗余的SOC_STM32H723ZGT6配置选项
1 parent 2e1cf8d commit 96a125c

35 files changed

+9014
-0
lines changed

.github/ALL_BSP_COMPILE.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@
195195
"stm32/stm32h563-st-nucleo",
196196
"stm32/stm32h503-st-nucleo",
197197
"stm32/stm32h723-st-nucleo",
198+
"stm32/stm32h723-lxb-disco",
198199
"stm32/stm32h730-esphosted-evb",
199200
"stm32/stm32h743-armfly-v7",
200201
"stm32/stm32h743-atk-apollo",

bsp/stm32/libraries/HAL_Drivers/drivers/config/h7/uart_config.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,17 @@ extern "C" {
145145
#endif /* UART5_DMA_RX_CONFIG */
146146
#endif /* BSP_UART5_RX_USING_DMA */
147147

148+
#if defined(BSP_USING_LPUART1)
149+
#ifndef LPUART1_CONFIG
150+
#define LPUART1_CONFIG \
151+
{ \
152+
.name = "hlpuart1", \
153+
.Instance = LPUART1, \
154+
.irq_type = LPUART1_IRQn, \
155+
}
156+
#endif /* LPUART1_CONFIG */
157+
#endif /* BSP_USING_LPUART1 */
158+
148159
#ifdef __cplusplus
149160
}
150161
#endif

0 commit comments

Comments
 (0)