My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

macros.h 6.4KB

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