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/incubator-nuttx.git
from 4afd25b567 this flag is meaningless for the linker
new fd8eaf4f42 arch/stm32_capture_lowerhalf.c: add lower half support of
capture
new b41929522c drivers/timers/capture.c: add support of pwm capture driver
new 00e8e4fa28 boards/stm32f4discovery: add setup of pwm capture device
The 3 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:
arch/arm/src/stm32/Kconfig | 232 +++++++++
arch/arm/src/stm32/Make.defs | 4 +
arch/arm/src/stm32/stm32_capture.c | 228 ++++++--
arch/arm/src/stm32/stm32_capture.h | 68 ++-
arch/arm/src/stm32/stm32_capture_lowerhalf.c | 575 +++++++++++++++++++++
arch/arm/src/stm32/stm32_tim.c | 36 +-
boards/arm/stm32/stm32f4discovery/include/board.h | 9 +
boards/arm/stm32/stm32f4discovery/src/Make.defs | 4 +
.../arm/stm32/stm32f4discovery/src/stm32_bringup.c | 11 +
.../src/stm32_capture.c} | 93 ++--
.../stm32/stm32f4discovery/src/stm32f4discovery.h | 21 +
drivers/timers/Kconfig | 7 +
drivers/timers/Make.defs | 6 +
drivers/{sensors/qencoder.c => timers/capture.c} | 181 +++----
include/nuttx/fs/ioctl.h | 7 +-
.../nuttx/{sensors/hall3ph.h => timers/capture.h} | 78 ++-
16 files changed, 1290 insertions(+), 270 deletions(-)
create mode 100644 arch/arm/src/stm32/stm32_capture_lowerhalf.c
copy boards/arm/stm32/{nucleo-g431kb/src/stm32_dac.c =>
stm32f4discovery/src/stm32_capture.c} (62%)
copy drivers/{sensors/qencoder.c => timers/capture.c} (65%)
copy include/nuttx/{sensors/hall3ph.h => timers/capture.h} (67%)