blob: d130d6674699535eafd1a1e544259180efb34b42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "system.hpp"
#include <Arduino.h>
namespace tq::system {
// Abort compilation if the interrupt pin is not valid
static_assert(digitalPinToInterrupt(data_ready_signal_pin) != -1,
"The selected pin is not a valid interrupt source!");
}
|