Catch more LPC1768 pin conflicts (#17019)

This commit is contained in:
Scott Lahteine
2020-02-29 04:14:40 -06:00
committed by GitHub
parent 39c34e4992
commit 730804289c
5 changed files with 296 additions and 180 deletions

View File

@@ -2732,3 +2732,8 @@ static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
#if HAS_TMC_SPI && ALL(MONITOR_DRIVER_STATUS, SDSUPPORT, USES_SHARED_SPI)
#error "MONITOR_DRIVER_STATUS and SDSUPPORT cannot be used together on boards with shared SPI."
#endif
// G60/G61 Position Save
#if SAVED_POSITIONS > 256
#error "SAVED_POSITIONS must be an integer from 0 to 256."
#endif