Fix some pin inits
This commit is contained in:
		| @@ -123,12 +123,10 @@ void AnycubicTFTClass::OnSetup() { | ||||
|  | ||||
|   // initialise the state of the key pins running on the tft | ||||
|   #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT) | ||||
|     pinMode(SD_DETECT_PIN, INPUT); | ||||
|     WRITE(SD_DETECT_PIN, HIGH); | ||||
|     SET_INPUT_PULLUP(SD_DETECT_PIN); | ||||
|   #endif | ||||
|   #if ENABLED(FILAMENT_RUNOUT_SENSOR) | ||||
|     pinMode(FIL_RUNOUT_PIN, INPUT); | ||||
|     WRITE(FIL_RUNOUT_PIN, HIGH); | ||||
|     SET_INPUT_PULLUP(FIL_RUNOUT_PIN); | ||||
|   #endif | ||||
|  | ||||
|   mediaPrintingState = AMPRINTSTATE_NOT_PRINTING; | ||||
|   | ||||
| @@ -161,13 +161,13 @@ void printer_state_polling() { | ||||
|  | ||||
| void filament_pin_setup() { | ||||
|   #if PIN_EXISTS(MT_DET_1) | ||||
|     pinMode(MT_DET_1_PIN, INPUT_PULLUP); | ||||
|     SET_INPUT_PULLUP(MT_DET_1_PIN); | ||||
|   #endif | ||||
|   #if PIN_EXISTS(MT_DET_2) | ||||
|     pinMode(MT_DET_2_PIN, INPUT_PULLUP); | ||||
|     SET_INPUT_PULLUP(MT_DET_2_PIN); | ||||
|   #endif | ||||
|   #if PIN_EXISTS(MT_DET_3) | ||||
|     pinMode(MT_DET_3_PIN, INPUT_PULLUP); | ||||
|     SET_INPUT_PULLUP(MT_DET_3_PIN); | ||||
|   #endif | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user