Fix init of power supply pin

Fix #13184
This commit is contained in:
Scott Lahteine
2019-02-20 05:28:40 -06:00
parent 44c22e3935
commit 89bbc30a09
2 changed files with 5 additions and 13 deletions

View File

@ -42,13 +42,7 @@
#endif
// Could be moved to a feature, but this is all the data
bool powersupply_on = (
#if ENABLED(PS_DEFAULT_OFF)
false
#else
true
#endif
);
bool powersupply_on;
#if HAS_TRINAMIC
#include "../../feature/tmc_util.h"