From a92747f38d24be15b07b4e903b365cc88f5337e4 Mon Sep 17 00:00:00 2001 From: Josh Goebel Date: Sun, 21 Feb 2016 01:46:03 -0500 Subject: [PATCH] rename bootLCD to bootOLED --- src/core/core.cpp | 4 ++-- src/core/core.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/core.cpp b/src/core/core.cpp index 336ad85..8c9fd21 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -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)); diff --git a/src/core/core.h b/src/core/core.h index ff8bdc2..d0c4824 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -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));