diff --git a/Core/Src/app_main.c b/Core/Src/app_main.c index 3fd5cde..5b70dd2 100644 --- a/Core/Src/app_main.c +++ b/Core/Src/app_main.c @@ -11,7 +11,7 @@ #include "ufb/framebuffer.h" #include "iwdg.h" -#include "oled.h" +#include "app_oled.h" #include "ufb/fb_text.h" #include "app_temp.h" #include "app_knob.h" diff --git a/Core/Src/oled.c b/Core/Src/app_oled.c similarity index 100% rename from Core/Src/oled.c rename to Core/Src/app_oled.c diff --git a/Core/Inc/oled.h b/Core/Src/app_oled.h similarity index 100% rename from Core/Inc/oled.h rename to Core/Src/app_oled.h diff --git a/Core/Src/main.c b/Core/Src/main.c index d9d03ab..9a3d3bb 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -30,7 +30,7 @@ /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ #include "ufb/framebuffer.h" -#include "oled.h" +#include "app_oled.h" #include diff --git a/Makefile b/Makefile index 3c3f638..3b5b890 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ########################################################################################################################## -# File automatically-generated by tool: [projectgenerator] version: [3.16.0] date: [Tue Mar 07 00:54:18 CET 2023] +# File automatically-generated by tool: [projectgenerator] version: [3.16.0] date: [Tue Mar 07 00:54:18 CET 2023] ########################################################################################################################## # ------------------------------------------------ @@ -44,7 +44,7 @@ Core/Src/iwdg.c \ Core/Src/spi.c \ Core/Src/tim.c \ Core/Src/usart.c \ -Core/Src/oled.c \ +Core/Src/app_oled.c \ Core/Src/app_main.c \ Core/Src/app_pid.c \ Core/Src/app_gui.c \