From a0936287f9887acc365d4a4ff8cd916c44ad00b3 Mon Sep 17 00:00:00 2001 From: Nico Tonnhofer Date: Fri, 8 Dec 2017 18:22:08 +0100 Subject: [PATCH] home.c/.h: formattings --- home.c | 10 +++++----- home.h | 16 ++++++++-------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/home.c b/home.c index f9fbcfc..e3f1a8d 100644 --- a/home.c +++ b/home.c @@ -1,14 +1,14 @@ -#include "home.h" +#include "home.h" /** \file \brief Homing routines */ #include -#include "dda.h" -#include "dda_queue.h" -#include "pinio.h" -#include "gcode_parse.h" +#include "dda.h" +#include "dda_queue.h" +#include "pinio.h" +#include "gcode_parse.h" // Check configuration. #if defined X_MIN_PIN || defined X_MAX_PIN diff --git a/home.h b/home.h index be58132..a819ec1 100644 --- a/home.h +++ b/home.h @@ -1,15 +1,15 @@ -#ifndef _HOME_H +#ifndef _HOME_H #define _HOME_H void home(void); enum axis_endstop_e { - X_MIN_ENDSTOP = 0x01, - X_MAX_ENDSTOP = 0x02, - Y_MIN_ENDSTOP = 0x04, - Y_MAX_ENDSTOP = 0x08, - Z_MIN_ENDSTOP = 0x10, - Z_MAX_ENDSTOP = 0x20, + X_MIN_ENDSTOP = 0x01, + X_MAX_ENDSTOP = 0x02, + Y_MIN_ENDSTOP = 0x04, + Y_MAX_ENDSTOP = 0x08, + Z_MIN_ENDSTOP = 0x10, + Z_MAX_ENDSTOP = 0x20, }; void home_x_negative(void); @@ -19,4 +19,4 @@ void home_y_positive(void); void home_z_negative(void); void home_z_positive(void); -#endif /* _HOME_H */ +#endif /* _HOME_H */