From 4e268bcdf5d446bd4228c507b41de498ed94d183 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Fri, 11 Oct 2024 09:14:43 -1000 Subject: [PATCH] I2s direction --- FluidNC/esp32/i2s_engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FluidNC/esp32/i2s_engine.c b/FluidNC/esp32/i2s_engine.c index 967161aa5..55e701a9d 100644 --- a/FluidNC/esp32/i2s_engine.c +++ b/FluidNC/esp32/i2s_engine.c @@ -423,7 +423,7 @@ static int init_step_pin(int step_pin, int step_invert) { // pin states. Later, that variable will be transferred to // the I2S FIFO to change all the affected pins at once. static IRAM_ATTR void set_dir_pin(int pin, int level) { - i2s_out_write(pin, !level); + i2s_out_write(pin, level); } uint32_t new_port_data;