瀏覽代碼

Fix LCD SS pin configuration

There was a typo, so the attempted configuration proably didn't do
what it should have done. I think it left the pin floating, and
could cause the LCD problems issue-1230.
Fred Sundvik 8 年之前
父節點
當前提交
430a8e1750
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      keyboards/ergodox/infinity/drivers/gdisp/st7565ergodox/board_ST7565.h

+ 1 - 1
keyboards/ergodox/infinity/drivers/gdisp/st7565ergodox/board_ST7565.h

@@ -75,7 +75,7 @@ static GFXINLINE void init_board(GDisplay *g) {
     palSetPad(ST7565_GPIOPORT, ST7565_RST_PIN);
     palSetPadModeRaw(MOSI, ST7565_SPI_MODE);
     palSetPadModeRaw(SLCK, ST7565_SPI_MODE);
-    palSetPadModeRaw(SS, PAL_MODE_OUTPUT_PUSHPULL);
+    palSetPadModeNamed(SS, PAL_MODE_OUTPUT_PUSHPULL);
 
     spiInit();
     spiStart(&SPID1, &spi1config);