refactor function and file naming

This commit is contained in:
2025-03-09 14:35:40 +02:00
parent c6f2048d22
commit 9a40b5a6fb
8 changed files with 53 additions and 38 deletions

View File

@@ -1 +1,6 @@
#ifndef __EEPROM_24AA02E48
#define __EEPROM_24AA02E48
void EEPROM_24AA02E48_run_test(void);
#endif

9
Core/Inc/DNI.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __DNI
#define __DNI
extern ADC_HandleTypeDef hadc1;
void DNI_show_celsius(void);
void DNI_show_fahrenheit(void);
#endif

View File

@@ -1,2 +1,7 @@
#ifndef __PCA9685
#define __PCA9685
void PCA9685_run_test(void);
void PCA9685_cleanup(void);
#endif

View File

@@ -1,11 +0,0 @@
#ifndef __EXTERNAL_TEMP
#define __EXTERNAL_TEMP
extern ADC_HandleTypeDef hadc1;
void external_temp_show_celsius(void);
void external_temp_show_fahrenheit(void);
#endif