Browse Source

Allow ENABLED(b) to work with "true" and "false"

pull/1/head
Scott Lahteine 8 years ago
parent
commit
73a59a4e45
  1. 8
      Marlin/macros.h

8
Marlin/macros.h

@ -17,9 +17,11 @@
// Macros to support option testing
#define _CAT(a, ...) a ## __VA_ARGS__
#define SWITCH_ENABLED_0 0
#define SWITCH_ENABLED_1 1
#define SWITCH_ENABLED_ 1
#define SWITCH_ENABLED_false 0
#define SWITCH_ENABLED_true 1
#define SWITCH_ENABLED_0 0
#define SWITCH_ENABLED_1 1
#define SWITCH_ENABLED_ 1
#define ENABLED(b) _CAT(SWITCH_ENABLED_, b)
#define DISABLED(b) (!_CAT(SWITCH_ENABLED_, b))

Loading…
Cancel
Save