Revert "replace #define by constexpr"

This reverts commit a1d0a1313d.
This commit is contained in:
Rotzbua
2018-10-04 12:54:33 +02:00
parent e1b5c1dafa
commit 4623434bea
15 changed files with 42 additions and 42 deletions

View File

@@ -30,11 +30,11 @@
#include <SPI.h>
#include <MFRC522.h>
constexpr uint8_t RST_PIN = 9; // Configurable, see typical pin layout above
constexpr uint8_t SS_1_PIN = 10; // Configurable, take a unused pin, only HIGH/LOW required, must be diffrent to SS 2
constexpr uint8_t SS_2_PIN = 8; // Configurable, take a unused pin, only HIGH/LOW required, must be diffrent to SS 1
#define RST_PIN 9 // Configurable, see typical pin layout above
#define SS_1_PIN 10 // Configurable, take a unused pin, only HIGH/LOW required, must be diffrent to SS 2
#define SS_2_PIN 8 // Configurable, take a unused pin, only HIGH/LOW required, must be diffrent to SS 1
constexpr uint8_t NR_OF_READERS = 2;
#define NR_OF_READERS 2
byte ssPins[] = {SS_1_PIN, SS_2_PIN};