From c0924f98f42c454667e3bd2492d282975e0a32dc Mon Sep 17 00:00:00 2001 From: AJ Quick Date: Fri, 4 Aug 2023 11:15:52 -0600 Subject: [PATCH] Update GPIOPinDetail.cpp Moves pins 9 and 10 to no longer be restricted due to being available on some ESP32 chips. Reference: #984 --- FluidNC/src/Pins/GPIOPinDetail.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FluidNC/src/Pins/GPIOPinDetail.cpp b/FluidNC/src/Pins/GPIOPinDetail.cpp index fa1c428d0..b10172c2e 100644 --- a/FluidNC/src/Pins/GPIOPinDetail.cpp +++ b/FluidNC/src/Pins/GPIOPinDetail.cpp @@ -29,6 +29,8 @@ namespace Pins { PinCapabilities::UART; case 5: + case 9: + case 10: case 16: case 17: case 18: @@ -62,8 +64,6 @@ namespace Pins { case 6: // SPI flash integrated case 7: case 8: - case 9: - case 10: case 11: return PinCapabilities::Reserved;