From 36ac7746adce109f38ccaaca5a6bc6d61c698498 Mon Sep 17 00:00:00 2001 From: bryan065 <30362590+bryan065@users.noreply.github.com> Date: Mon, 6 Sep 2021 16:20:27 -0400 Subject: [PATCH] Update references to lowercase files --- keyboards/handwired/ghero20/ghero20.h | 2 +- keyboards/handwired/ghero20/mpu9250/mpu9250.c | 2 +- keyboards/handwired/ghero20/mpu9250/mpu9250.h | 2 +- keyboards/handwired/ghero20/rules.mk | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keyboards/handwired/ghero20/ghero20.h b/keyboards/handwired/ghero20/ghero20.h index 7dab4fed02e..7361794189d 100644 --- a/keyboards/handwired/ghero20/ghero20.h +++ b/keyboards/handwired/ghero20/ghero20.h @@ -17,7 +17,7 @@ #pragma once #include "quantum.h" -#include "MPU9250/MPU9250.h" /* MPU9250 for tilt sensor */ +#include "mpu9250/mpu9250.h" /* MPU9250 for tilt sensor */ /* This is a shortcut to help you visually see your layout. * diff --git a/keyboards/handwired/ghero20/mpu9250/mpu9250.c b/keyboards/handwired/ghero20/mpu9250/mpu9250.c index 4ea30e87404..9c9c11eae14 100644 --- a/keyboards/handwired/ghero20/mpu9250/mpu9250.c +++ b/keyboards/handwired/ghero20/mpu9250/mpu9250.c @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -#include "MPU9250.h" +#include "mpu9250.h" #include "wait.h" uint8_t send_data; diff --git a/keyboards/handwired/ghero20/mpu9250/mpu9250.h b/keyboards/handwired/ghero20/mpu9250/mpu9250.h index a4cd2bae6b6..064644fa01f 100644 --- a/keyboards/handwired/ghero20/mpu9250/mpu9250.h +++ b/keyboards/handwired/ghero20/mpu9250/mpu9250.h @@ -16,7 +16,7 @@ #pragma once -#include "MPU9250RegisterMap.h" +#include "mpu9250registermap.h" #include "i2c_master.h" enum Axis { diff --git a/keyboards/handwired/ghero20/rules.mk b/keyboards/handwired/ghero20/rules.mk index 0f0a61db250..46f80c52ec9 100644 --- a/keyboards/handwired/ghero20/rules.mk +++ b/keyboards/handwired/ghero20/rules.mk @@ -26,4 +26,4 @@ AUDIO_ENABLE = no # Audio output BLUETOOTH = AdafruitBLE QUANTUM_LIB_SRC += i2c_master.c -SRC += MPU9250/MPU9250.c +SRC += mpu9250/mpu9250.c