We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe1156 commit c606a44Copy full SHA for c606a44
src/pico_pio.cpp
@@ -102,7 +102,8 @@ stepper_pio_program *stepper_make_program() {
102
add_step(pio_encode_jmp_pin(program.pc + 2));
103
// Step or Pause is completed
104
uint8_t forward_jump_1 = program.pc;
105
- add_step(pio_encode_jmp(0) | pio_encode_delay(7));
+ // same cycle count as the branch for the position update
106
+ add_step(pio_encode_jmp(0) | pio_encode_delay(6));
107
//
108
// Perform increment by one with only invert and decrement:
109
// position 0 1 2 .. d e f ef
0 commit comments