4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 15:03:33 +08:00

[gd32/libraries]: fix compile error in rtc: "pmu_backup_write_enable" was not found. (#5906)

This commit is contained in:
charlown 2022-05-09 09:37:51 +08:00 committed by GitHub
parent f977f07ddf
commit 6495df717f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,7 @@ if GetDepend(['RT_USING_DAC']):
if GetDepend(['RT_USING_RTC']):
src += ['GD32F20x_standard_peripheral/Source/gd32f20x_rtc.c']
src += ['GD32F20x_standard_peripheral/Source/gd32f20x_pmu.c']
if GetDepend(['RT_USING_WDT']):
src += ['GD32F20x_standard_peripheral/Source/gd32f20x_wwdgt.c']

View File

@ -37,6 +37,7 @@ if GetDepend(['RT_USING_DAC']):
if GetDepend(['RT_USING_RTC']):
src += ['GD32F30x_standard_peripheral/Source/gd32f30x_rtc.c']
src += ['GD32F30x_standard_peripheral/Source/gd32f30x_pmu.c']
if GetDepend(['RT_USING_WDT']):
src += ['GD32F30x_standard_peripheral/Source/gd32f30x_wwdgt.c']

View File

@ -38,6 +38,7 @@ if GetDepend(['RT_USING_DAC']):
if GetDepend(['RT_USING_RTC']):
src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_rtc.c']
src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_pmu.c']
if GetDepend(['RT_USING_WDT']):
src += ['GD32F4xx_standard_peripheral/Source/gd32f4xx_wwdgt.c']