2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-07-23 00:39:23 +02:00
|
|
|
#ifndef MACROS_H
|
|
|
|
#define MACROS_H
|
|
|
|
|
2016-03-14 07:15:17 +01:00
|
|
|
// Macros to make a string from a macro
|
2016-03-02 10:28:15 +01:00
|
|
|
#define STRINGIFY_(M) #M
|
|
|
|
#define STRINGIFY(M) STRINGIFY_(M)
|
2016-03-14 07:15:17 +01:00
|
|
|
|
2015-07-23 00:39:23 +02:00
|
|
|
// Macros for bit masks
|
2016-02-29 08:29:53 +01:00
|
|
|
#define TEST(n,b) (((n)&_BV(b))!=0)
|
|
|
|
#define SBI(n,b) (n |= _BV(b))
|
|
|
|
#define CBI(n,b) (n &= ~_BV(b))
|
|
|
|
#define SET_BIT(n,b,value) (n) ^= ((-value)^(n)) & (_BV(b))
|
2015-07-23 00:39:23 +02:00
|
|
|
|
|
|
|
// Macros for maths shortcuts
|
|
|
|
#define RADIANS(d) ((d)*M_PI/180.0)
|
|
|
|
#define DEGREES(r) ((r)*180.0/M_PI)
|
|
|
|
|
|
|
|
// Macros to contrain values
|
|
|
|
#define NOLESS(v,n) do{ if (v < n) v = n; }while(0)
|
|
|
|
#define NOMORE(v,n) do{ if (v > n) v = n; }while(0)
|
|
|
|
|
|
|
|
// Macros to support option testing
|
|
|
|
#define _CAT(a, ...) a ## __VA_ARGS__
|
2016-03-14 06:15:01 +01:00
|
|
|
#define SWITCH_ENABLED_false 0
|
|
|
|
#define SWITCH_ENABLED_true 1
|
|
|
|
#define SWITCH_ENABLED_0 0
|
|
|
|
#define SWITCH_ENABLED_1 1
|
|
|
|
#define SWITCH_ENABLED_ 1
|
2015-07-23 00:39:23 +02:00
|
|
|
#define ENABLED(b) _CAT(SWITCH_ENABLED_, b)
|
|
|
|
#define DISABLED(b) (!_CAT(SWITCH_ENABLED_, b))
|
|
|
|
|
2016-03-28 12:52:49 +02:00
|
|
|
#define NUMERIC(a) ((a) >= '0' && '9' >= (a))
|
|
|
|
#define NUMERIC_SIGNED(a) (NUMERIC(a) || (a) == '-')
|
2015-07-23 00:50:20 +02:00
|
|
|
#define COUNT(a) (sizeof(a)/sizeof(*a))
|
|
|
|
|
2016-03-27 13:25:33 +02:00
|
|
|
#define PIN_EXISTS(PN) (defined(PN ##_PIN) && PN ##_PIN >= 0)
|
|
|
|
|
2016-04-11 00:55:12 +02:00
|
|
|
#define PENDING(NOW,SOON) ((long)(NOW-(SOON))<0)
|
|
|
|
#define ELAPSED(NOW,SOON) (!PENDING(NOW,SOON))
|
|
|
|
|
2016-04-29 02:59:52 +02:00
|
|
|
#define NOOP do{}while(0)
|
|
|
|
|
2015-07-23 00:39:23 +02:00
|
|
|
#endif //__MACROS_H
|