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.

macros.h 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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 XYZE 4
  26. #define ABC 3
  27. #define XYZ 3
  28. #define _XMIN_ 100
  29. #define _YMIN_ 200
  30. #define _ZMIN_ 300
  31. #define _XMAX_ 101
  32. #define _YMAX_ 201
  33. #define _ZMAX_ 301
  34. #define FORCE_INLINE __attribute__((always_inline)) inline
  35. #define _UNUSED __attribute__((unused))
  36. #define _O0 __attribute__((optimize("O0")))
  37. #define _Os __attribute__((optimize("Os")))
  38. #define _O1 __attribute__((optimize("O1")))
  39. #define _O2 __attribute__((optimize("O2")))
  40. #define _O3 __attribute__((optimize("O3")))
  41. // Bracket code that shouldn't be interrupted
  42. #ifndef CRITICAL_SECTION_START
  43. #define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli();
  44. #define CRITICAL_SECTION_END SREG = _sreg;
  45. #endif
  46. // Clock speed factors
  47. #define CYCLES_PER_MICROSECOND (F_CPU / 1000000L) // 16 or 20
  48. #define INT0_PRESCALER 8
  49. // Highly granular delays for step pulses, etc.
  50. #define DELAY_0_NOP NOOP
  51. #define DELAY_1_NOP __asm__("nop\n\t")
  52. #define DELAY_2_NOP DELAY_1_NOP; DELAY_1_NOP
  53. #define DELAY_3_NOP DELAY_1_NOP; DELAY_2_NOP
  54. #define DELAY_4_NOP DELAY_1_NOP; DELAY_3_NOP
  55. #define DELAY_5_NOP DELAY_1_NOP; DELAY_4_NOP
  56. #define DELAY_NOPS(X) \
  57. switch (X) { \
  58. case 20: DELAY_1_NOP; case 19: DELAY_1_NOP; \
  59. case 18: DELAY_1_NOP; case 17: DELAY_1_NOP; \
  60. case 16: DELAY_1_NOP; case 15: DELAY_1_NOP; \
  61. case 14: DELAY_1_NOP; case 13: DELAY_1_NOP; \
  62. case 12: DELAY_1_NOP; case 11: DELAY_1_NOP; \
  63. case 10: DELAY_1_NOP; case 9: DELAY_1_NOP; \
  64. case 8: DELAY_1_NOP; case 7: DELAY_1_NOP; \
  65. case 6: DELAY_1_NOP; case 5: DELAY_1_NOP; \
  66. case 4: DELAY_1_NOP; case 3: DELAY_1_NOP; \
  67. case 2: DELAY_1_NOP; case 1: DELAY_1_NOP; \
  68. }
  69. #define DELAY_10_NOP DELAY_5_NOP; DELAY_5_NOP
  70. #define DELAY_20_NOP DELAY_10_NOP; DELAY_10_NOP
  71. #if CYCLES_PER_MICROSECOND == 16
  72. #define DELAY_1US DELAY_10_NOP; DELAY_5_NOP; DELAY_1_NOP
  73. #else
  74. #define DELAY_1US DELAY_20_NOP
  75. #endif
  76. #define DELAY_2US DELAY_1US; DELAY_1US
  77. #define DELAY_3US DELAY_1US; DELAY_2US
  78. #define DELAY_4US DELAY_1US; DELAY_3US
  79. #define DELAY_5US DELAY_1US; DELAY_4US
  80. #define DELAY_6US DELAY_1US; DELAY_5US
  81. #define DELAY_7US DELAY_1US; DELAY_6US
  82. #define DELAY_8US DELAY_1US; DELAY_7US
  83. #define DELAY_9US DELAY_1US; DELAY_8US
  84. #define DELAY_10US DELAY_1US; DELAY_9US
  85. // Remove compiler warning on an unused variable
  86. #define UNUSED(x) (void) (x)
  87. // Macros to make a string from a macro
  88. #define STRINGIFY_(M) #M
  89. #define STRINGIFY(M) STRINGIFY_(M)
  90. // Macros for bit masks
  91. #define TEST(n,b) (((n)&_BV(b))!=0)
  92. #define SBI(n,b) (n |= _BV(b))
  93. #define CBI(n,b) (n &= ~_BV(b))
  94. #define SET_BIT(n,b,value) (n) ^= ((-value)^(n)) & (_BV(b))
  95. // Macro to check that a number if a power if 2
  96. #define IS_POWER_OF_2(x) ((x) && !((x) & ((x) - 1)))
  97. // Macros for maths shortcuts
  98. #ifndef M_PI
  99. #define M_PI 3.14159265358979323846
  100. #endif
  101. #define RADIANS(d) ((d)*M_PI/180.0)
  102. #define DEGREES(r) ((r)*180.0/M_PI)
  103. #define HYPOT2(x,y) (sq(x)+sq(y))
  104. #define CIRCLE_AREA(R) (M_PI * sq(R))
  105. #define CIRCLE_CIRC(R) (2.0 * M_PI * (R))
  106. #define SIGN(a) ((a>0)-(a<0))
  107. #define IS_POWER_OF_2(x) ((x) && !((x) & ((x) - 1)))
  108. // Macros to contrain values
  109. #define NOLESS(v,n) do{ if (v < n) v = n; }while(0)
  110. #define NOMORE(v,n) do{ if (v > n) v = n; }while(0)
  111. // Macros to support option testing
  112. #define _CAT(a, ...) a ## __VA_ARGS__
  113. #define SWITCH_ENABLED_false 0
  114. #define SWITCH_ENABLED_true 1
  115. #define SWITCH_ENABLED_0 0
  116. #define SWITCH_ENABLED_1 1
  117. #define SWITCH_ENABLED_ 1
  118. #define ENABLED(b) _CAT(SWITCH_ENABLED_, b)
  119. #define DISABLED(b) (!_CAT(SWITCH_ENABLED_, b))
  120. #define WITHIN(V,L,H) ((V) >= (L) && (V) <= (H))
  121. #define NUMERIC(a) WITHIN(a, '0', '9')
  122. #define DECIMAL(a) (NUMERIC(a) || a == '.')
  123. #define NUMERIC_SIGNED(a) (NUMERIC(a) || (a) == '-' || (a) == '+')
  124. #define DECIMAL_SIGNED(a) (DECIMAL(a) || (a) == '-' || (a) == '+')
  125. #define COUNT(a) (sizeof(a)/sizeof(*a))
  126. #define ZERO(a) memset(a,0,sizeof(a))
  127. #define COPY(a,b) memcpy(a,b,min(sizeof(a),sizeof(b)))
  128. // Macros for initializing arrays
  129. #define ARRAY_6(v1, v2, v3, v4, v5, v6, ...) { v1, v2, v3, v4, v5, v6 }
  130. #define ARRAY_5(v1, v2, v3, v4, v5, ...) { v1, v2, v3, v4, v5 }
  131. #define ARRAY_4(v1, v2, v3, v4, ...) { v1, v2, v3, v4 }
  132. #define ARRAY_3(v1, v2, v3, ...) { v1, v2, v3 }
  133. #define ARRAY_2(v1, v2, ...) { v1, v2 }
  134. #define ARRAY_1(v1, ...) { v1 }
  135. #define _ARRAY_N(N, ...) ARRAY_ ##N(__VA_ARGS__)
  136. #define ARRAY_N(N, ...) _ARRAY_N(N, __VA_ARGS__)
  137. // Macros for adding
  138. #define INC_0 1
  139. #define INC_1 2
  140. #define INC_2 3
  141. #define INC_3 4
  142. #define INC_4 5
  143. #define INC_5 6
  144. #define INC_6 7
  145. #define INC_7 8
  146. #define INC_8 9
  147. #define INCREMENT_(n) INC_ ##n
  148. #define INCREMENT(n) INCREMENT_(n)
  149. // Macros for subtracting
  150. #define DEC_1 0
  151. #define DEC_2 1
  152. #define DEC_3 2
  153. #define DEC_4 3
  154. #define DEC_5 4
  155. #define DEC_6 5
  156. #define DEC_7 6
  157. #define DEC_8 7
  158. #define DEC_9 8
  159. #define DECREMENT_(n) DEC_ ##n
  160. #define DECREMENT(n) DECREMENT_(n)
  161. #define PIN_EXISTS(PN) (defined(PN ##_PIN) && PN ##_PIN >= 0)
  162. #define PENDING(NOW,SOON) ((long)(NOW-(SOON))<0)
  163. #define ELAPSED(NOW,SOON) (!PENDING(NOW,SOON))
  164. #define MMM_TO_MMS(MM_M) ((MM_M)/60.0)
  165. #define MMS_TO_MMM(MM_S) ((MM_S)*60.0)
  166. #define NOOP do{} while(0)
  167. #define CEILING(x,y) (((x) + (y) - 1) / (y))
  168. #define MIN3(a, b, c) min(min(a, b), c)
  169. #define MIN4(a, b, c, d) min(MIN3(a, b, c), d)
  170. #define MIN5(a, b, c, d, e) min(MIN4(a, b, c, d), e)
  171. #define MAX3(a, b, c) max(max(a, b), c)
  172. #define MAX4(a, b, c, d) max(MAX3(a, b, c), d)
  173. #define MAX5(a, b, c, d, e) max(MAX4(a, b, c, d), e)
  174. #define UNEAR_ZERO(x) ((x) < 0.000001)
  175. #define NEAR_ZERO(x) WITHIN(x, -0.000001, 0.000001)
  176. #define NEAR(x,y) NEAR_ZERO((x)-(y))
  177. #define RECIPROCAL(x) (NEAR_ZERO(x) ? 0.0 : 1.0 / (x))
  178. #define FIXFLOAT(f) (f + 0.00001)
  179. //
  180. // Maths macros that can be overridden by HAL
  181. //
  182. #define ATAN2(y, x) atan2(y, x)
  183. #define FABS(x) fabs(x)
  184. #define POW(x, y) pow(x, y)
  185. #define SQRT(x) sqrt(x)
  186. #define CEIL(x) ceil(x)
  187. #define FLOOR(x) floor(x)
  188. #define LROUND(x) lround(x)
  189. #define FMOD(x, y) fmod(x, y)
  190. #define HYPOT(x,y) SQRT(HYPOT2(x,y))
  191. #endif //__MACROS_H