We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e31279 commit 6d4e2aaCopy full SHA for 6d4e2aa
bsp/stm32/libraries/HAL_Drivers/drivers/SConscript
@@ -50,7 +50,10 @@ if GetDepend(['RT_USING_DAC']):
50
src += ['drv_dac.c']
51
52
if GetDepend(['RT_USING_CAN']):
53
- src += ['drv_can.c']
+ if GetDepend(['SOC_SERIES_STM32H7']):
54
+ src += ['drv_fdcan.c']
55
+ else:
56
+ src += ['drv_can.c']
57
58
if GetDepend(['RT_USING_PM']):
59
src += ['drv_pm.c']
0 commit comments