Home
last modified time | relevance | path

Searched full:steps (Results 1 – 25 of 406) sorted by relevance

12345678910>>...17

/Zephyr-latest/tests/drivers/stepper/drv8424/api/src/
Dmain.c92 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/.github/workflows/
Drelease.yml12 steps:
26 args: spdx -o zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
32 name: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
33 path: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
46 release_name: Zephyr ${{ steps.get_version.outputs.TRIMMED_VERSION }}
57 upload_url: ${{ steps.create_release.outputs.upload_url }}
58 asset_path: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
59 asset_name: zephyr-${{ steps.get_version.outputs.VERSION }}.spdx
Ddoc-publish-pr.yml22 steps:
32 if: steps.download-artifacts.outputs.found_artifact == 'true'
41 if: steps.download-artifacts.outputs.found_artifact == 'true'
50 steps.download-artifacts.outputs.found_artifact == 'true' &&
51 steps.check-pr.outputs.VALID != 'true'
57 if: steps.download-artifacts.outputs.found_artifact == 'true'
65 if: steps.download-artifacts.outputs.found_artifact == 'true'
73 if: steps.download-artifacts.outputs.found_artifact == 'true'
Dbsim-tests.yaml48 steps:
145 steps.check-bluetooth-files.outputs.any_modified == 'true'
146 || steps.check-networking-files.outputs.any_modified == 'true'
147 || steps.check-uart-files.outputs.any_modified == 'true'
148 || steps.check-common-files.outputs.any_modified == 'true'
159 …if: steps.check-bluetooth-files.outputs.any_modified == 'true' || steps.check-common-files.outputs…
164 …if: steps.check-networking-files.outputs.any_modified == 'true' || steps.check-common-files.output…
169 …if: steps.check-uart-files.outputs.any_modified == 'true' || steps.check-common-files.outputs.any_…
Dtwister-prep.yaml25 subset: ${{ steps.output-services.outputs.subset }}
26 size: ${{ steps.output-services.outputs.size }}
27 fullrun: ${{ steps.output-services.outputs.fullrun }}
37 steps:
113 subset: ${{ steps.output-services.outputs.subset }}
114 size: ${{ steps.output-services.outputs.size }}
115 fullrun: ${{ steps.output-services.outputs.fullrun }}
125 steps:
Dcodecov.yaml38 steps:
138 steps:
186 …gcovr ${{ steps.get-coverage-files.outputs.mergefiles }} --merge-mode-functions=separate --json m…
187 …gcovr ${{ steps.get-coverage-files.outputs.mergefiles }} --merge-mode-functions=separate --cobertu…
206 -o coverage-report-${{ steps.run_date.outputs.run_date_short }} \
218 coverage/reports/coverage-report-${{ steps.run_date.outputs.run_date_short }}.json
219 coverage/reports/coverage-report-${{ steps.run_date.outputs.run_date_short }}.xlsx
Dtwister-publish.yaml20 steps:
38 if: steps.download-artifacts.outputs.found_artifact == 'true'
/Zephyr-latest/samples/sensor/tdk_apex/
DREADME.rst81 [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/samples/basic/fade_led/src/
Dmain.c30 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/include/zephyr/drivers/
Dstepper.h44 /** 2 micro-steps per full step */
46 /** 4 micro-steps per full step */
48 /** 8 micro-steps per full step */
50 /** 16 micro-steps per full step */
52 /** 32 micro-steps per full step */
54 /** 64 micro-steps per full step */
56 /** 128 micro-steps per full step */
58 /** 256 micro-steps per full step */
88 /** Steps set using move_by or move_to have been executed */
157 * @brief Set the time interval between steps in nanoseconds.
[all …]
/Zephyr-latest/drivers/sensor/nordic/qdec_nrfx/
Dqdec_nrfx.c23 /* limit range to avoid overflow when converting steps to degrees */
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, \
261 "Wrong QDEC"#idx" steps setting in dts. Only positive number valid"); \
262 BUILD_ASSERT(QDEC_PROP(idx, steps) <= 2048, \
263 "Wrong QDEC"#idx" steps setting in dts. Overflow possible"); \
285 .steps = QDEC_PROP(idx, steps), \
/Zephyr-latest/samples/drivers/stepper/tmc50xx/
DREADME.rst44 stepper_callback steps completed changing direction
45 stepper_callback steps completed changing direction
46 stepper_callback steps completed changing direction
DKconfig7 int "Steps per revolution"
/Zephyr-latest/dts/bindings/sensor/
Dnordic,npm1300-charger.yaml19 Available range is 3.5 V to 3.65 V and 4.0 V to 4.45 V in 50 mV steps.
25 Available range is 3.5 V to 3.65 V and 4.0 V to 4.45 V in 50 mV steps.
33 Available range is 32 mA to 800 mA in 2mA steps.
50 Available values are 100 mA, or between 500 mA and 1500 mA in 100 mA steps.
Dnordic,nrf-qdec.yaml43 steps:
45 description: Number of steps on the rotating wheel
/Zephyr-latest/dts/bindings/input/
Dgpio-qdec.yaml21 steps-per-period = <4>;
51 steps-per-period:
55 How many steps to count before reporting an input event.
/Zephyr-latest/samples/boards/nordic/nrf_led_matrix/src/
Dmain.c119 STEPS = BLOCK_SIZE - 1, in update_through_framebuffer() enumerator
131 for (int i = 0; i < 1 + 3 * RUNS * STEPS; ++i) { in update_through_framebuffer()
137 uint8_t step = (0xFF - MIN_BRIGHTNESS) / STEPS; in update_through_framebuffer()
144 if (i < 1 * RUNS * STEPS) { in update_through_framebuffer()
151 } else if (i < 2 * RUNS * STEPS) { in update_through_framebuffer()
172 if (dimmed == 0 || dimmed == STEPS) { in update_through_framebuffer()
/Zephyr-latest/samples/boards/nxp/mimxrt595_evk/system_off/
DREADME.rst72 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
93 Steps to program OTP fuses on MIMXRT595-EVK
95 These steps detail using USB as the interface between blhost and the
/Zephyr-latest/tests/drivers/hwinfo/api/src/
Dmain.c17 * - Test Steps
77 * - Test Steps
115 * - Test Steps
167 * - Test Steps
/Zephyr-latest/samples/drivers/stepper/generic/
DKconfig7 int "Steps per revolution"
/Zephyr-latest/tests/subsys/shell/shell_history/src/
Dshell_history_test.c56 * Test steps:
97 * Test steps:
162 * Test steps:
195 * Test steps:
219 * * Test steps:
/Zephyr-latest/samples/boards/phytec/reel_board/mesh_badge/
DREADME.rst16 however these instructions focus on the necessary steps for phones.
18 Steps to set up
/Zephyr-latest/doc/hardware/peripherals/sensor/
Dtriggers.rst13 data ready to physical events such as taps or steps.
/Zephyr-latest/include/zephyr/dt-bindings/sensor/
Dina237.h53 /* Delay for initial ADC conversion in steps of 2 ms */
66 * @param convdly Delay for initial ADC conversion in steps of 2 ms.
/Zephyr-latest/doc/hardware/peripherals/
Dstepper.rst15 - 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`.

12345678910>>...17