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 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. // Macros to make a string from a macro
  25. #define STRINGIFY_(M) #M
  26. #define STRINGIFY(M) STRINGIFY_(M)
  27. // Macros for bit masks
  28. #define TEST(n,b) (((n)&_BV(b))!=0)
  29. #define SBI(n,b) (n |= _BV(b))
  30. #define CBI(n,b) (n &= ~_BV(b))
  31. #define SET_BIT(n,b,value) (n) ^= ((-value)^(n)) & (_BV(b))
  32. // Macros for maths shortcuts
  33. #define RADIANS(d) ((d)*M_PI/180.0)
  34. #define DEGREES(r) ((r)*180.0/M_PI)
  35. // Macros to contrain values
  36. #define NOLESS(v,n) do{ if (v < n) v = n; }while(0)
  37. #define NOMORE(v,n) do{ if (v > n) v = n; }while(0)
  38. // Macros to support option testing
  39. #define _CAT(a, ...) a ## __VA_ARGS__
  40. #define SWITCH_ENABLED_false 0
  41. #define SWITCH_ENABLED_true 1
  42. #define SWITCH_ENABLED_0 0
  43. #define SWITCH_ENABLED_1 1
  44. #define SWITCH_ENABLED_ 1
  45. #define ENABLED(b) _CAT(SWITCH_ENABLED_, b)
  46. #define DISABLED(b) (!_CAT(SWITCH_ENABLED_, b))
  47. #define NUMERIC(a) ((a) >= '0' && '9' >= (a))
  48. #define NUMERIC_SIGNED(a) (NUMERIC(a) || (a) == '-')
  49. #define COUNT(a) (sizeof(a)/sizeof(*a))
  50. // Macros for initializing arrays
  51. #define ARRAY_6(v1, v2, v3, v4, v5, v6, args...) { v1, v2, v3, v4, v5, v6 }
  52. #define ARRAY_5(v1, v2, v3, v4, v5, args...) { v1, v2, v3, v4, v5 }
  53. #define ARRAY_4(v1, v2, v3, v4, args...) { v1, v2, v3, v4 }
  54. #define ARRAY_3(v1, v2, v3, args...) { v1, v2, v3 }
  55. #define ARRAY_2(v1, v2, args...) { v1, v2 }
  56. #define ARRAY_1(v1, args...) { v1 }
  57. #define _ARRAY_N(N, args...) ARRAY_ ##N(args)
  58. #define ARRAY_N(N, args...) _ARRAY_N(N, args)
  59. // Macros for adding
  60. #define INC_0 1
  61. #define INC_1 2
  62. #define INC_2 3
  63. #define INC_3 4
  64. #define INC_4 5
  65. #define INC_5 6
  66. #define INC_6 7
  67. #define INC_7 8
  68. #define INC_8 9
  69. #define INCREMENT_(n) INC_ ##n
  70. #define INCREMENT(n) INCREMENT_(n)
  71. // Macros for subtracting
  72. #define DEC_1 0
  73. #define DEC_2 1
  74. #define DEC_3 2
  75. #define DEC_4 3
  76. #define DEC_5 4
  77. #define DEC_6 5
  78. #define DEC_7 6
  79. #define DEC_8 7
  80. #define DEC_9 8
  81. #define DECREMENT_(n) DEC_ ##n
  82. #define DECREMENT(n) DECREMENT_(n)
  83. #define PIN_EXISTS(PN) (defined(PN ##_PIN) && PN ##_PIN >= 0)
  84. #define PENDING(NOW,SOON) ((long)(NOW-(SOON))<0)
  85. #define ELAPSED(NOW,SOON) (!PENDING(NOW,SOON))
  86. #define NOOP do{} while(0)
  87. #define CEILING(x,y) (((x) + (y) - 1) / (y))
  88. #endif //__MACROS_H