1
0
mirror of https://github.com/jscrane/r65emu.git synced 2025-07-26 01:24:09 +00:00

display orientation

This commit is contained in:
Stephen Crane
2014-11-30 21:17:08 +00:00
parent c8d22f487c
commit f47148382b
3 changed files with 6 additions and 4 deletions

View File

@@ -20,7 +20,6 @@ bool hardware_reset() {
extern SPIClass SPIRAM_DEV;
SPIRAM_DEV.begin();
SPIRAM_DEV.setModule(SPIRAM_SPI);
// SPIRAM_DEV.setClockDivider(SPI_CLOCK_DIV2);
SPIRAM_DEV.setClockDivider(1);
SPIRAM_DEV.setDataMode(SPI_MODE0);
@@ -30,7 +29,6 @@ bool hardware_reset() {
#if defined(TFT_BACKLIGHT)
digitalWrite(TFT_BACKLIGHT, HIGH);
#endif
utft.InitLCD();
_cpu->reset();
return sd;