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.

minmax.h 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #undef MIN
  23. #undef MAX
  24. #ifdef __cplusplus
  25. #ifndef _MINMAX_H_
  26. #define _MINMAX_H_
  27. extern "C++" {
  28. // C++11 solution that is standards compliant. Return type is deduced automatically
  29. template <class L, class R> static inline constexpr auto MIN(const L lhs, const R rhs) -> decltype(lhs + rhs) {
  30. return lhs < rhs ? lhs : rhs;
  31. }
  32. template <class L, class R> static inline constexpr auto MAX(const L lhs, const R rhs) -> decltype(lhs + rhs) {
  33. return lhs > rhs ? lhs : rhs;
  34. }
  35. template<class T, class ... Ts> static inline constexpr const T MIN(T V, Ts... Vs) { return MIN(V, MIN(Vs...)); }
  36. template<class T, class ... Ts> static inline constexpr const T MAX(T V, Ts... Vs) { return MAX(V, MAX(Vs...)); }
  37. }
  38. #endif
  39. #else
  40. // NUM_ARGS(...) evaluates to the number of arguments
  41. #define _NUM_ARGS(X,X6,X5,X4,X3,X2,X1,N,...) N
  42. #define NUM_ARGS(...) _NUM_ARGS(0, __VA_ARGS__ ,6,5,4,3,2,1,0)
  43. #define MIN_2(a,b) ({__typeof__(a) _a = (a); __typeof__(b) _b = (b); _a > _b ? _a : _b;})
  44. #define MIN_3(a,...) MIN_2(a,MIN_2(__VA_ARGS__))
  45. #define MIN_4(a,...) MIN_2(a,MIN_3(__VA_ARGS__))
  46. #define MIN_5(a,...) MIN_2(a,MIN_4(__VA_ARGS__))
  47. #define MIN_6(a,...) MIN_2(a,MIN_5(__VA_ARGS__))
  48. #define __MIN_N(N, ...) MIN_ ## N(__VA_ARGS__)
  49. #define _MIN_N(N, ...) __MIN_N(N, __VA_ARGS__)
  50. #define MIN(...) _MIN_N(NUM_ARGS(__VA_ARGS__), __VA_ARGS__)
  51. #define MAX_2(a,b) ({__typeof__(a) _a = (a); __typeof__(b) _b = (b); _a > _b ? _a : _b;})
  52. #define MAX_3(a,...) MAX_2(a,MAX_2(__VA_ARGS__))
  53. #define MAX_4(a,...) MAX_2(a,MAX_3(__VA_ARGS__))
  54. #define MAX_5(a,...) MAX_2(a,MAX_4(__VA_ARGS__))
  55. #define MAX_6(a,...) MAX_2(a,MAX_5(__VA_ARGS__))
  56. #define __MAX_N(N, ...) MAX_ ## N(__VA_ARGS__)
  57. #define _MAX_N(N, ...) __MAX_N(N, __VA_ARGS__)
  58. #define MAX(...) _MAX_N(NUM_ARGS(__VA_ARGS__), __VA_ARGS__)
  59. #endif