Misfittech/nano_stepper

#error "Step/Dir UART not supported on Mechaduino yet"

Closed this issue · 3 comments

The compilation is broken when using mechaduino hardware. How to not use Dir UART?

@kaloca, This is a sanity check. You can change this line of code:

#define USE_STEP_DIR_SERIAL

to this:

//#define USE_STEP_DIR_SERIAL

in the file board.h to make it work with mechaduino

@trampas, can you add

#ifndef MECHADUINO_HARDWARE
#define USE_STEP_DIR_SERIAL
#endif

Fixed in b731396, closing