This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 4b14b206db sched: Replace direct semaphore value access with nxsem_get_value new 5d66f2c973 arch/stm32f0l0g0: add support for IWDG and WWDG new b81c4d3aa6 boards/nucleo-c071rb: add watchdog support The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: Documentation/platforms/arm/stm32c0/index.rst | 4 +- Documentation/platforms/arm/stm32f0/index.rst | 4 +- Documentation/platforms/arm/stm32g0/index.rst | 4 +- Documentation/platforms/arm/stm32l0/index.rst | 4 +- arch/arm/src/stm32f0l0g0/CMakeLists.txt | 9 ++ arch/arm/src/stm32f0l0g0/Make.defs | 10 +- arch/arm/src/stm32f0l0g0/hardware/stm32_dbgmcu.h | 80 ++++++++++ .../{stm32 => stm32f0l0g0}/hardware/stm32_wdg.h | 27 ++-- arch/arm/src/stm32f0l0g0/hardware/stm32c0_pwr.h | 10 +- arch/arm/src/stm32f0l0g0/hardware/stm32f0_pwr.h | 1 + arch/arm/src/stm32f0l0g0/hardware/stm32g0_pwr.h | 2 + arch/arm/src/stm32f0l0g0/hardware/stm32l0_pwr.h | 1 + arch/arm/src/{stm32 => stm32f0l0g0}/stm32_iwdg.c | 154 +++--------------- arch/arm/src/stm32f0l0g0/stm32_lse.c | 4 + arch/arm/src/{stm32 => stm32f0l0g0}/stm32_lsi.c | 10 +- arch/arm/src/stm32f0l0g0/stm32_rcc.h | 20 +++ arch/arm/src/{stm32 => stm32f0l0g0}/stm32_wdg.h | 16 +- arch/arm/src/{stm32 => stm32f0l0g0}/stm32_wwdg.c | 177 ++++----------------- .../nucleo-c071rb/configs/jumbo/defconfig | 3 + .../stm32f0l0g0/nucleo-c071rb/src/stm32_bringup.c | 12 ++ 20 files changed, 228 insertions(+), 324 deletions(-) create mode 100644 arch/arm/src/stm32f0l0g0/hardware/stm32_dbgmcu.h copy arch/arm/src/{stm32 => stm32f0l0g0}/hardware/stm32_wdg.h (90%) copy arch/arm/src/{stm32 => stm32f0l0g0}/stm32_iwdg.c (81%) copy arch/arm/src/{stm32 => stm32f0l0g0}/stm32_lsi.c (92%) copy arch/arm/src/{stm32 => stm32f0l0g0}/stm32_wdg.h (92%) copy arch/arm/src/{stm32 => stm32f0l0g0}/stm32_wwdg.c (80%)