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-08-03 04:36:58 +02:00
|
|
|
#define NUM_AXIS 4
|
2018-02-03 01:49:32 +01:00
|
|
|
#define ABCE 4
|
2016-08-21 03:07:42 +02:00
|
|
|
#define XYZE 4
|
|
|
|
#define ABC 3
|
|
|
|
#define XYZ 3
|
2016-08-03 04:36:58 +02:00
|
|
|
|
2018-03-19 23:59:50 +01:00
|
|
|
// For use in macros that take a single axis letter
|
|
|
|
#define _AXIS(AXIS) AXIS ##_AXIS
|
|
|
|
|
2017-10-27 23:24:34 +02:00
|
|
|
#define _XMIN_ 100
|
|
|
|
#define _YMIN_ 200
|
|
|
|
#define _ZMIN_ 300
|
|
|
|
#define _XMAX_ 101
|
|
|
|
#define _YMAX_ 201
|
|
|
|
#define _ZMAX_ 301
|
|
|
|
|
2016-07-26 08:24:11 +02:00
|
|
|
#define FORCE_INLINE __attribute__((always_inline)) inline
|
2017-05-22 20:47:43 +02:00
|
|
|
#define _UNUSED __attribute__((unused))
|
|
|
|
#define _O0 __attribute__((optimize("O0")))
|
|
|
|
#define _Os __attribute__((optimize("Os")))
|
|
|
|
#define _O1 __attribute__((optimize("O1")))
|
|
|
|
#define _O2 __attribute__((optimize("O2")))
|
|
|
|
#define _O3 __attribute__((optimize("O3")))
|
2017-05-22 19:33:50 +02:00
|
|
|
|
2016-07-26 08:24:11 +02:00
|
|
|
// Bracket code that shouldn't be interrupted
|
|
|
|
#ifndef CRITICAL_SECTION_START
|
|
|
|
#define CRITICAL_SECTION_START unsigned char _sreg = SREG; cli();
|
|
|
|
#define CRITICAL_SECTION_END SREG = _sreg;
|
|
|
|
#endif
|
|
|
|
|
2017-04-11 18:11:17 +02:00
|
|
|
// Clock speed factors
|
|
|
|
#define CYCLES_PER_MICROSECOND (F_CPU / 1000000L) // 16 or 20
|
|
|
|
#define INT0_PRESCALER 8
|
2016-09-24 06:59:16 +02:00
|
|
|
|
2018-04-28 02:06:46 +02:00
|
|
|
// Processor-level delays for hardware interfaces
|
|
|
|
#ifndef _NOP
|
|
|
|
#define _NOP() do { __asm__ volatile ("nop"); } while (0)
|
|
|
|
#endif
|
2017-04-11 09:33:46 +02:00
|
|
|
#define DELAY_NOPS(X) \
|
|
|
|
switch (X) { \
|
2018-04-28 02:06:46 +02:00
|
|
|
case 20: _NOP(); case 19: _NOP(); case 18: _NOP(); case 17: _NOP(); \
|
|
|
|
case 16: _NOP(); case 15: _NOP(); case 14: _NOP(); case 13: _NOP(); \
|
|
|
|
case 12: _NOP(); case 11: _NOP(); case 10: _NOP(); case 9: _NOP(); \
|
|
|
|
case 8: _NOP(); case 7: _NOP(); case 6: _NOP(); case 5: _NOP(); \
|
|
|
|
case 4: _NOP(); case 3: _NOP(); case 2: _NOP(); case 1: _NOP(); \
|
2017-04-11 09:33:46 +02:00
|
|
|
}
|
2018-04-28 02:06:46 +02:00
|
|
|
#define DELAY_0_NOP NOOP
|
|
|
|
#define DELAY_1_NOP DELAY_NOPS( 1)
|
|
|
|
#define DELAY_2_NOP DELAY_NOPS( 2)
|
|
|
|
#define DELAY_3_NOP DELAY_NOPS( 3)
|
|
|
|
#define DELAY_4_NOP DELAY_NOPS( 4)
|
|
|
|
#define DELAY_5_NOP DELAY_NOPS( 5)
|
|
|
|
#define DELAY_10_NOP DELAY_NOPS(10)
|
|
|
|
#define DELAY_20_NOP DELAY_NOPS(20)
|
|
|
|
|
|
|
|
#if CYCLES_PER_MICROSECOND <= 200
|
|
|
|
#define DELAY_100NS DELAY_NOPS((CYCLES_PER_MICROSECOND + 9) / 10)
|
|
|
|
#else
|
|
|
|
#define DELAY_100NS DELAY_20_NOP
|
|
|
|
#endif
|
2017-04-11 09:33:46 +02:00
|
|
|
|
2018-04-28 02:06:46 +02:00
|
|
|
// Microsecond delays for hardware interfaces
|
|
|
|
#if CYCLES_PER_MICROSECOND <= 20
|
|
|
|
#define DELAY_1US DELAY_NOPS(CYCLES_PER_MICROSECOND)
|
|
|
|
#define DELAY_US(X) \
|
|
|
|
switch (X) { \
|
|
|
|
case 20: DELAY_1US; case 19: DELAY_1US; case 18: DELAY_1US; case 17: DELAY_1US; \
|
|
|
|
case 16: DELAY_1US; case 15: DELAY_1US; case 14: DELAY_1US; case 13: DELAY_1US; \
|
|
|
|
case 12: DELAY_1US; case 11: DELAY_1US; case 10: DELAY_1US; case 9: DELAY_1US; \
|
|
|
|
case 8: DELAY_1US; case 7: DELAY_1US; case 6: DELAY_1US; case 5: DELAY_1US; \
|
|
|
|
case 4: DELAY_1US; case 3: DELAY_1US; case 2: DELAY_1US; case 1: DELAY_1US; \
|
|
|
|
}
|
2017-04-11 09:33:46 +02:00
|
|
|
#else
|
2018-04-28 02:06:46 +02:00
|
|
|
#define DELAY_US(X) delayMicroseconds(X) // May not be usable in CRITICAL_SECTION
|
|
|
|
#define DELAY_1US DELAY_US(1)
|
2017-04-11 09:33:46 +02:00
|
|
|
#endif
|
2018-04-28 02:06:46 +02:00
|
|
|
#define DELAY_2US DELAY_US( 2)
|
|
|
|
#define DELAY_3US DELAY_US( 3)
|
|
|
|
#define DELAY_4US DELAY_US( 4)
|
|
|
|
#define DELAY_5US DELAY_US( 5)
|
|
|
|
#define DELAY_6US DELAY_US( 6)
|
|
|
|
#define DELAY_7US DELAY_US( 7)
|
|
|
|
#define DELAY_8US DELAY_US( 8)
|
|
|
|
#define DELAY_9US DELAY_US( 9)
|
|
|
|
#define DELAY_10US DELAY_US(10)
|
|
|
|
#define DELAY_20US DELAY_US(20)
|
2017-04-11 09:33:46 +02:00
|
|
|
|
2016-07-26 08:24:11 +02:00
|
|
|
// Remove compiler warning on an unused variable
|
|
|
|
#define UNUSED(x) (void) (x)
|
|
|
|
|
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
|
|
|
|
2018-05-08 10:42:45 +02:00
|
|
|
#define A(CODE) " " CODE "\n\t"
|
|
|
|
#define L(CODE) CODE ":\n\t"
|
|
|
|
|
2015-07-23 00:39:23 +02:00
|
|
|
// Macros for bit masks
|
2018-02-02 04:46:10 +01:00
|
|
|
#undef _BV
|
|
|
|
#define _BV(b) (1<<(b))
|
|
|
|
#define TEST(n,b) !!((n)&_BV(b))
|
2016-02-29 08:29:53 +01:00
|
|
|
#define SBI(n,b) (n |= _BV(b))
|
|
|
|
#define CBI(n,b) (n &= ~_BV(b))
|
2015-07-23 00:39:23 +02:00
|
|
|
|
2018-02-02 04:46:10 +01:00
|
|
|
#define _BV32(b) (1UL << (b))
|
|
|
|
#define TEST32(n,b) !!((n)&_BV32(b))
|
|
|
|
#define SBI32(n,b) (n |= _BV32(b))
|
|
|
|
#define CBI32(n,b) (n &= ~_BV32(b))
|
|
|
|
|
2017-08-08 07:09:50 +02:00
|
|
|
// Macro to check that a number if a power if 2
|
2017-10-02 07:26:56 +02:00
|
|
|
#define IS_POWER_OF_2(x) ((x) && !((x) & ((x) - 1)))
|
2017-08-08 07:09:50 +02:00
|
|
|
|
2015-07-23 00:39:23 +02:00
|
|
|
// Macros for maths shortcuts
|
2016-07-26 03:07:15 +02:00
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#endif
|
2015-07-23 00:39:23 +02:00
|
|
|
#define RADIANS(d) ((d)*M_PI/180.0)
|
|
|
|
#define DEGREES(r) ((r)*180.0/M_PI)
|
2016-09-12 04:02:37 +02:00
|
|
|
#define HYPOT2(x,y) (sq(x)+sq(y))
|
2015-07-23 00:39:23 +02:00
|
|
|
|
2017-11-10 11:32:03 +01:00
|
|
|
#define CIRCLE_AREA(R) (M_PI * sq(R))
|
|
|
|
#define CIRCLE_CIRC(R) (2.0 * M_PI * (R))
|
|
|
|
|
2017-06-09 14:06:23 +02:00
|
|
|
#define SIGN(a) ((a>0)-(a<0))
|
2017-11-10 11:32:03 +01:00
|
|
|
#define IS_POWER_OF_2(x) ((x) && !((x) & ((x) - 1)))
|
2017-06-09 14:06:23 +02:00
|
|
|
|
2015-07-23 00:39:23 +02:00
|
|
|
// 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))
|
|
|
|
|
2017-03-31 16:00:49 +02:00
|
|
|
#define WITHIN(V,L,H) ((V) >= (L) && (V) <= (H))
|
|
|
|
#define NUMERIC(a) WITHIN(a, '0', '9')
|
2017-05-20 10:03:08 +02:00
|
|
|
#define DECIMAL(a) (NUMERIC(a) || a == '.')
|
|
|
|
#define NUMERIC_SIGNED(a) (NUMERIC(a) || (a) == '-' || (a) == '+')
|
|
|
|
#define DECIMAL_SIGNED(a) (DECIMAL(a) || (a) == '-' || (a) == '+')
|
2015-07-23 00:50:20 +02:00
|
|
|
#define COUNT(a) (sizeof(a)/sizeof(*a))
|
2016-10-22 17:07:18 +02:00
|
|
|
#define ZERO(a) memset(a,0,sizeof(a))
|
2017-03-05 02:19:06 +01:00
|
|
|
#define COPY(a,b) memcpy(a,b,min(sizeof(a),sizeof(b)))
|
2015-07-23 00:50:20 +02:00
|
|
|
|
2016-07-02 05:27:55 +02:00
|
|
|
// Macros for initializing arrays
|
2016-10-13 15:29:29 +02:00
|
|
|
#define ARRAY_6(v1, v2, v3, v4, v5, v6, ...) { v1, v2, v3, v4, v5, v6 }
|
|
|
|
#define ARRAY_5(v1, v2, v3, v4, v5, ...) { v1, v2, v3, v4, v5 }
|
|
|
|
#define ARRAY_4(v1, v2, v3, v4, ...) { v1, v2, v3, v4 }
|
|
|
|
#define ARRAY_3(v1, v2, v3, ...) { v1, v2, v3 }
|
|
|
|
#define ARRAY_2(v1, v2, ...) { v1, v2 }
|
|
|
|
#define ARRAY_1(v1, ...) { v1 }
|
|
|
|
|
|
|
|
#define _ARRAY_N(N, ...) ARRAY_ ##N(__VA_ARGS__)
|
|
|
|
#define ARRAY_N(N, ...) _ARRAY_N(N, __VA_ARGS__)
|
2016-07-02 05:27:55 +02:00
|
|
|
|
2016-05-17 23:56:49 +02:00
|
|
|
// Macros for adding
|
|
|
|
#define INC_0 1
|
|
|
|
#define INC_1 2
|
|
|
|
#define INC_2 3
|
|
|
|
#define INC_3 4
|
|
|
|
#define INC_4 5
|
|
|
|
#define INC_5 6
|
|
|
|
#define INC_6 7
|
|
|
|
#define INC_7 8
|
|
|
|
#define INC_8 9
|
|
|
|
#define INCREMENT_(n) INC_ ##n
|
|
|
|
#define INCREMENT(n) INCREMENT_(n)
|
|
|
|
|
|
|
|
// Macros for subtracting
|
|
|
|
#define DEC_1 0
|
|
|
|
#define DEC_2 1
|
|
|
|
#define DEC_3 2
|
|
|
|
#define DEC_4 3
|
|
|
|
#define DEC_5 4
|
|
|
|
#define DEC_6 5
|
|
|
|
#define DEC_7 6
|
|
|
|
#define DEC_8 7
|
|
|
|
#define DEC_9 8
|
|
|
|
#define DECREMENT_(n) DEC_ ##n
|
|
|
|
#define DECREMENT(n) DECREMENT_(n)
|
|
|
|
|
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))
|
|
|
|
|
2017-11-10 11:32:03 +01:00
|
|
|
#define MMM_TO_MMS(MM_M) ((MM_M)/60.0)
|
|
|
|
#define MMS_TO_MMM(MM_S) ((MM_S)*60.0)
|
|
|
|
|
2016-07-15 01:07:34 +02:00
|
|
|
#define NOOP do{} while(0)
|
|
|
|
|
|
|
|
#define CEILING(x,y) (((x) + (y) - 1) / (y))
|
2016-04-29 02:59:52 +02:00
|
|
|
|
2017-04-06 23:46:30 +02:00
|
|
|
#define MIN3(a, b, c) min(min(a, b), c)
|
|
|
|
#define MIN4(a, b, c, d) min(MIN3(a, b, c), d)
|
|
|
|
#define MIN5(a, b, c, d, e) min(MIN4(a, b, c, d), e)
|
|
|
|
#define MAX3(a, b, c) max(max(a, b), c)
|
|
|
|
#define MAX4(a, b, c, d) max(MAX3(a, b, c), d)
|
|
|
|
#define MAX5(a, b, c, d, e) max(MAX4(a, b, c, d), e)
|
2016-08-19 05:13:47 +02:00
|
|
|
|
2016-09-12 04:02:37 +02:00
|
|
|
#define UNEAR_ZERO(x) ((x) < 0.000001)
|
2017-03-31 16:00:49 +02:00
|
|
|
#define NEAR_ZERO(x) WITHIN(x, -0.000001, 0.000001)
|
2016-09-12 04:02:37 +02:00
|
|
|
#define NEAR(x,y) NEAR_ZERO((x)-(y))
|
|
|
|
|
2016-11-12 21:33:07 +01:00
|
|
|
#define RECIPROCAL(x) (NEAR_ZERO(x) ? 0.0 : 1.0 / (x))
|
2018-04-30 02:10:37 +02:00
|
|
|
#define FIXFLOAT(f) (f + (f < 0.0 ? -0.00005 : 0.00005))
|
2016-11-12 21:33:07 +01:00
|
|
|
|
2017-06-20 05:39:23 +02:00
|
|
|
//
|
|
|
|
// Maths macros that can be overridden by HAL
|
|
|
|
//
|
|
|
|
#define ATAN2(y, x) atan2(y, x)
|
|
|
|
#define FABS(x) fabs(x)
|
|
|
|
#define POW(x, y) pow(x, y)
|
|
|
|
#define SQRT(x) sqrt(x)
|
|
|
|
#define CEIL(x) ceil(x)
|
|
|
|
#define FLOOR(x) floor(x)
|
|
|
|
#define LROUND(x) lround(x)
|
|
|
|
#define FMOD(x, y) fmod(x, y)
|
|
|
|
#define HYPOT(x,y) SQRT(HYPOT2(x,y))
|
|
|
|
|
|
|
|
#endif //__MACROS_H
|