Skip to content
Snippets Groups Projects
Commit f5f99c48 authored by alexborro's avatar alexborro
Browse files

Merge pull request #1626 from Wurstnase/fix_backslash_macro

fix macro
parents 89fe7746 05333f61
Branches
Tags
No related merge requests found
......@@ -529,10 +529,10 @@ ISR(TIMER1_COMPA_vect) {
#endif
#define STEP_IF_COUNTER(axis, AXIS) \
if (counter_## axis > 0) {
if (counter_## axis > 0) { \
counter_## axis -= current_block->step_event_count; \
count_position[AXIS ##_AXIS] += count_direction[AXIS ##_AXIS]; \
AXIS ##_STEP_WRITE(LOW);
AXIS ##_STEP_WRITE(LOW); \
}
STEP_IF_COUNTER(x, X);
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment