My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifndef MACROS_H
  23. #define MACROS_H
  24. #define NUM_AXIS 4
  25. #define FORCE_INLINE __attribute__((always_inline)) inline
  26. // Bracket code that shouldn't be interrupted
  27. #ifndef CRITICAL_SECTION_START
  28. #define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli();
  29. #define CRITICAL_SECTION_END SREG = _sreg;
  30. #endif
  31. // Remove compiler warning on an unused variable
  32. #define UNUSED(x) (void) (x)
  33. // Macros to make a string from a macro
  34. #define STRINGIFY_(M) #M
  35. #define STRINGIFY(M) STRINGIFY_(M)
  36. // Macros for bit masks
  37. #define TEST(n,b) (((n)&_BV(b))!=0)
  38. #define SBI(n,b) (n |= _BV(b))
  39. #define CBI(n,b) (n &= ~_BV(b))
  40. #define SET_BIT(n,b,value) (n) ^= ((-value)^(n)) & (_BV(b))
  41. // Macros for maths shortcuts
  42. #ifndef M_PI
  43. #define M_PI 3.14159265358979323846
  44. #endif
  45. #define RADIANS(d) ((d)*M_PI/180.0)
  46. #define DEGREES(r) ((r)*180.0/M_PI)
  47. #define HYPOT(x,y) sqrt(sq(x)+sq(y))
  48. // Macros to contrain values
  49. #define NOLESS(v,n) do{ if (v < n) v = n; }while(0)
  50. #define NOMORE(v,n) do{ if (v > n) v = n; }while(0)
  51. // Macros to support option testing
  52. #define _CAT(a, ...) a ## __VA_ARGS__
  53. #define SWITCH_ENABLED_false 0
  54. #define SWITCH_ENABLED_true 1
  55. #define SWITCH_ENABLED_0 0
  56. #define SWITCH_ENABLED_1 1
  57. #define SWITCH_ENABLED_ 1
  58. #define ENABLED(b) _CAT(SWITCH_ENABLED_, b)
  59. #define DISABLED(b) (!_CAT(SWITCH_ENABLED_, b))
  60. #define NUMERIC(a) ((a) >= '0' && '9' >= (a))
  61. #define NUMERIC_SIGNED(a) (NUMERIC(a) || (a) == '-')
  62. #define COUNT(a) (sizeof(a)/sizeof(*a))
  63. // Macros for initializing arrays
  64. #define ARRAY_6(v1, v2, v3, v4, v5, v6, args...) { v1, v2, v3, v4, v5, v6 }
  65. #define ARRAY_5(v1, v2, v3, v4, v5, args...) { v1, v2, v3, v4, v5 }
  66. #define ARRAY_4(v1, v2, v3, v4, args...) { v1, v2, v3, v4 }
  67. #define ARRAY_3(v1, v2, v3, args...) { v1, v2, v3 }
  68. #define ARRAY_2(v1, v2, args...) { v1, v2 }
  69. #define ARRAY_1(v1, args...) { v1 }
  70. #define _ARRAY_N(N, args...) ARRAY_ ##N(args)
  71. #define ARRAY_N(N, args...) _ARRAY_N(N, args)
  72. // Macros for adding
  73. #define INC_0 1
  74. #define INC_1 2
  75. #define INC_2 3
  76. #define INC_3 4
  77. #define INC_4 5
  78. #define INC_5 6
  79. #define INC_6 7
  80. #define INC_7 8
  81. #define INC_8 9
  82. #define INCREMENT_(n) INC_ ##n
  83. #define INCREMENT(n) INCREMENT_(n)
  84. // Macros for subtracting
  85. #define DEC_1 0
  86. #define DEC_2 1
  87. #define DEC_3 2
  88. #define DEC_4 3
  89. #define DEC_5 4
  90. #define DEC_6 5
  91. #define DEC_7 6
  92. #define DEC_8 7
  93. #define DEC_9 8
  94. #define DECREMENT_(n) DEC_ ##n
  95. #define DECREMENT(n) DECREMENT_(n)
  96. #define PIN_EXISTS(PN) (defined(PN ##_PIN) && PN ##_PIN >= 0)
  97. #define PENDING(NOW,SOON) ((long)(NOW-(SOON))<0)
  98. #define ELAPSED(NOW,SOON) (!PENDING(NOW,SOON))
  99. #define NOOP do{} while(0)
  100. #define CEILING(x,y) (((x) + (y) - 1) / (y))
  101. #endif //__MACROS_H