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-apps.git.
from 9397e92 examples/thttpd: Don't touch task_tcb_s::argv field
new edeaace examples/foc/foc_cfg.h: fix typo
new 3fda129 examples/foc: move setpoint and vbus configuration from
foc_adc.h to foc_cfg.h
new ea27aac examples/foc: move threads related logic to a separate file
new 37aa562 examples/foc: move adc and button interfaces logic to a
separate file
The 4 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:
examples/foc/Kconfig | 13 +-
examples/foc/Makefile | 2 +-
examples/foc/foc_adc.h | 49 --
examples/foc/foc_cfg.h | 51 +-
examples/foc/foc_intf.c | 485 +++++++++++++++++++
.../lv_tick_interface.h => examples/foc/foc_intf.h | 40 +-
examples/foc/foc_main.c | 537 +++------------------
examples/foc/foc_motor_b16.c | 1 -
examples/foc/foc_motor_f32.c | 1 -
examples/foc/foc_thr.c | 312 ++++++++++++
examples/foc/foc_thr.h | 17 +-
11 files changed, 951 insertions(+), 557 deletions(-)
create mode 100644 examples/foc/foc_intf.c
copy graphics/lvgl/lv_tick_interface.h => examples/foc/foc_intf.h (76%)
create mode 100644 examples/foc/foc_thr.c