jonny_ji7 63f0da25f1 Fix isr-function (fully functional now), Add task for debug output
new driver works well while testing with one button with debug output
- small changes to isr function that made it fully functional!
- add stepper debug task
- minor optimizations necessary
2023-04-25 14:35:07 +02:00

13 lines
355 B
C++

#pragma once
//init stepper pins and timer
void stepper_init();
void stepper_setTargetSteps(int steps);
//task that periodically logs variables for debugging stepper driver
void task_stepper_debug(void *pvParameter);
//control stepper without timer (software)
void task_stepperCtrlSw(void *pvParameter);
void stepperSw_setTargetSteps(uint64_t target);