/Zephyr-latest/tests/drivers/stepper/drv8424/api/src/ |
D | main.c | 92 int32_t steps = 100; in ZTEST_F() local 97 (void)stepper_move_by(fixture->dev, steps); in ZTEST_F() 105 int32_t steps = 1000; in ZTEST_F() local 111 (void)stepper_move_by(fixture->dev, steps); in ZTEST_F() 123 int32_t steps = 1000; in ZTEST_F() local 128 (void)stepper_move_by(fixture->dev, steps); in ZTEST_F() 138 int32_t steps = 1000; in ZTEST_F() local 144 (void)stepper_move_by(fixture->dev, steps); in ZTEST_F() 269 int32_t steps = 50; in ZTEST_F() local 274 (void)stepper_move_by(fixture->dev, steps); in ZTEST_F() [all …]
|
/Zephyr-latest/samples/basic/fade_led/src/ |
D | main.c | 30 uint32_t steps[ARRAY_SIZE(pwm_leds)]; in main() local 38 steps[i] = pwm_leds[i].period / NUM_STEPS; in main() 55 if (pulse_widths[i] + steps[i] >= pwm_leds[i].period) { in main() 59 pulse_widths[i] += steps[i]; in main() 62 if (pulse_widths[i] <= steps[i]) { in main() 66 pulse_widths[i] -= steps[i]; in main()
|
/Zephyr-latest/samples/sensor/tdk_apex/ |
D | README.rst | 81 [0:00:09.287]: STEP_DET count: 6 steps cadence: 2.0 steps/s activity: Unknown 82 [0:00:09.689]: STEP_DET count: 7 steps cadence: 2.1 steps/s activity: Walk 83 [0:00:10.051]: STEP_DET count: 8 steps cadence: 2.2 steps/s activity: Walk 84 [0:00:10.433]: STEP_DET count: 9 steps cadence: 2.2 steps/s activity: Walk 85 [0:00:10.835]: STEP_DET count: 10 steps cadence: 2.3 steps/s activity: Walk
|
/Zephyr-latest/drivers/sensor/nordic/qdec_nrfx/ |
D | qdec_nrfx.c | 42 int32_t steps; member 109 val->val1 = (acc * FULL_ANGLE) / config->steps; in qdec_nrfx_channel_get() 110 val->val2 = (acc * FULL_ANGLE) - (val->val1 * config->steps); in qdec_nrfx_channel_get() 113 val->val2 /= config->steps; in qdec_nrfx_channel_get() 260 BUILD_ASSERT(QDEC_PROP(idx, steps) > 0, \ 262 BUILD_ASSERT(QDEC_PROP(idx, steps) <= 2048, \ 285 .steps = QDEC_PROP(idx, steps), \
|
/Zephyr-latest/samples/drivers/stepper/tmc50xx/ |
D | README.rst | 44 stepper_callback steps completed changing direction 45 stepper_callback steps completed changing direction 46 stepper_callback steps completed changing direction
|
/Zephyr-latest/samples/bluetooth/mesh/src/ |
D | main.c | 76 uint8_t steps = val & BIT_MASK(6); in model_time_decode() local 78 if (steps == 0x3f) { in model_time_decode() 82 return steps * time_res[resolution]; in model_time_decode() 96 uint8_t steps = DIV_ROUND_UP(ms, time_res[i]); in model_time_encode() local 98 return steps | (i << 6); in model_time_encode()
|
/Zephyr-latest/samples/sensor/qdec/boards/ |
D | nrf54h20dk_nrf54h20_cpuapp.overlay | 41 steps = <120>;
|
D | nrf54l15dk_nrf54l15_cpuapp.overlay | 41 steps = <120>;
|
D | nrf52840dk_nrf52840.overlay | 40 steps = < 120 >;
|
D | nrf5340dk_nrf5340_cpuapp.overlay | 39 steps = < 120 >;
|
/Zephyr-latest/include/zephyr/bluetooth/mesh/ |
D | cfg_cli.h | 362 #define BT_MESH_PUB_PERIOD_100MS(steps) ((steps) & BIT_MASK(6)) argument 371 #define BT_MESH_PUB_PERIOD_SEC(steps) (((steps) & BIT_MASK(6)) | (1 << 6)) argument 382 #define BT_MESH_PUB_PERIOD_10SEC(steps) (((steps) & BIT_MASK(6)) | (2 << 6)) argument 393 #define BT_MESH_PUB_PERIOD_10MIN(steps) (((steps) & BIT_MASK(6)) | (3 << 6)) argument
|
/Zephyr-latest/samples/boards/nordic/mesh/onoff_level_lighting_vnd_app/src/mesh/ |
D | transition.c | 20 uint8_t steps, resolution; in calculate_rt() local 39 steps = duration_remainder / 600000; in calculate_rt() 43 steps = duration_remainder / 10000; in calculate_rt() 47 steps = duration_remainder / 1000; in calculate_rt() 51 steps = duration_remainder / 100; in calculate_rt() 54 steps = 0x00; in calculate_rt() 57 transition->rt = (resolution << 6) | steps; in calculate_rt()
|
/Zephyr-latest/samples/subsys/bindesc/read_bindesc/ |
D | README.rst | 15 Follow these steps to build the ``read_bindesc`` sample application:
|
/Zephyr-latest/tests/boards/nrf/qdec/boards/ |
D | nrf54l15dk_nrf54l15_common.dtsi | 50 steps = <127>;
|
D | nrf54l20pdk_nrf54l20_cpuapp.overlay | 50 steps = <127>;
|
D | nrf54h20dk_nrf54h20_cpuapp.overlay | 50 steps = <127>;
|
D | nrf5340dk_nrf5340_cpuapp.overlay | 48 steps = < 127 >;
|
D | nrf52840dk_nrf52840.overlay | 49 steps = < 127 >;
|
/Zephyr-latest/doc/hardware/peripherals/sensor/ |
D | triggers.rst | 13 data ready to physical events such as taps or steps.
|
/Zephyr-latest/samples/net/dsa/ |
D | README.rst | 25 Follow these steps to build the DSA sample application:
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | stepper.rst | 15 - Set **step interval** in nanoseconds between steps using :c:func:`stepper_set_microstep_interval` 21 - **Move by** +/- micro-steps also known as **relative movement** using :c:func:`stepper_move_by`.
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.mcux_os | 21 picked, OS Timer will take steps to store state and reinitialize on wakeups.
|
/Zephyr-latest/samples/subsys/bindesc/hello_bindesc/ |
D | README.rst | 15 Follow these steps to build the ``hello_bindesc`` sample application:
|
/Zephyr-latest/samples/boards/nxp/mimxrt595_evk/system_off/ |
D | README.rst | 72 the One-Time-Programmable (OTP) fuses in the MCU. The steps below detail 87 These steps use the blhost tool that runs on a host computer running 89 executable for your host OS, and use the command-line steps below to 95 These steps detail using USB as the interface between blhost and the
|
/Zephyr-latest/doc/services/llext/ |
D | build.rst | 56 The exact steps of the extension building process depend on the currently 68 The binary file resulting from compilation and/or linking steps. 92 Custom build steps 95 The ``add_llext_command`` CMake function can be used to add custom build steps 110 The different build steps are:
|