- add macro variable STEPPER_TEST (config.hpp) if set: only `task_stepper-test` is started (main.cpp) - add file for stepper/guide related code (guide-stepper.cpp/hpp) currently defines a task that simply moves the axis left to right repeatedly with a speed defined by a potentiometer connected to ADC GPIO34
20 lines
426 B
C++
20 lines
426 B
C++
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include "DendoStepper.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "esp_log.h"
|
|
#include "driver/adc.h"
|
|
}
|
|
|
|
#include "config.hpp"
|
|
|
|
|
|
//task that initializes and controls the stepper motor
|
|
//current functionality:
|
|
// - automatically auto-homes
|
|
// - moves left and right repeatedly
|
|
// - updates speed from potentiometer each cycle
|
|
void task_stepper(void *pvParameter);
|