rename bootLCD to bootOLED

This commit is contained in:
Josh Goebel 2016-02-21 01:46:03 -05:00 committed by Scott Allen
parent fa9d47310b
commit a92747f38d
2 changed files with 3 additions and 3 deletions

View File

@ -95,7 +95,7 @@ void ArduboyCore::boot()
SPI.begin();
bootPins();
bootLCD();
bootOLED();
#ifdef SAFE_MODE
if (buttonsState() == (LEFT_BUTTON | UP_BUTTON))
@ -137,7 +137,7 @@ void ArduboyCore::bootPins()
digitalWrite(RST, HIGH); // bring out of reset
}
void ArduboyCore::bootLCD()
void ArduboyCore::bootOLED()
{
// setup the ports we need to talk to the OLED
csport = portOutputRegister(digitalPinToPort(CS));

View File

@ -288,7 +288,7 @@ protected:
void static inline safeMode() __attribute__((always_inline));
// internals
void static inline bootLCD() __attribute__((always_inline));
void static inline bootOLED() __attribute__((always_inline));
void static inline bootPins() __attribute__((always_inline));
void static inline slowCPU() __attribute__((always_inline));
void static inline saveMuchPower(); __attribute__((always_inline));