Fixed incorrect NC macro check

This commit is contained in:
jgromes 2020-01-06 17:40:13 +01:00
parent 946621cabf
commit 814949d183

View file

@ -77,7 +77,7 @@
/*!
\brief Alias for unused pin, if not supplied by the Arduino core.
*/
#ifndef NC
#if !(defined(NC) || defined(ARDUINO_ARCH_STM32))
#define NC (-1)
#endif