Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-05-29 15:45:13 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-05-29 15:45:13 +0300
commit2c96415909ffb6c50c2c072a655466c3a5f30b86 (patch)
treef0718d645d271c32ea25637c94d23094801891f4
parent539c6f40cc1dedc08a5e157cd3b6d27bf3b37db2 (diff)
Set high drive strngth on TFT LCD pins
-rw-r--r--src/Display/Display.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Display/Display.cpp b/src/Display/Display.cpp
index 1cf2c256..ea1de282 100644
--- a/src/Display/Display.cpp
+++ b/src/Display/Display.cpp
@@ -259,7 +259,10 @@ GCodeResult Display::Configure(GCodeBuffer& gb, const StringRef& reply) THROWS(G
SetPinFunction(LcdSpiMosiPin, LcdSpiPinFunction);
SetPinFunction(LcdSpiMisoPin, LcdSpiPinFunction);
SetPinFunction(LcdSpiSclkPin, LcdSpiPinFunction);
+ SetHighDriveStrength(LcdSpiMosiPin);
+ SetHighDriveStrength(LcdSpiSclkPin);
pinMode(LcdFlashCsPin, OUTPUT_HIGH); // in case the flash chip is fitted, deselect it
+ pinMode(LcdFontCsPin, OUTPUT_HIGH); // in case the font chip is fitted, deselect it
InitDisplay(gb,
# if USE_FONT_CHIP
new LcdILI9488(LcdFontCsPin, LcdSercomNumber),