Skip to content

Commit

Permalink
Merge pull request qmk#1245 from fredizzimo/fix_lcd_pin_configuration
Browse files Browse the repository at this point in the history
Fix LCD SS pin configuration
  • Loading branch information
jackhumbert authored Apr 19, 2017
2 parents 4760b26 + 430a8e1 commit 95242fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 95242fe

Please sign in to comment.