add new UI for testing phase, update modules to indicate success or failure in the return value

This commit is contained in:
2025-04-14 19:33:13 +03:00
parent 87eb642adc
commit 0eb025d3d4
17 changed files with 127 additions and 33 deletions

View File

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

View File

@@ -1,7 +1,7 @@
#ifndef __CS43L22
#define __CS43L22
void CS43L22_run_test(void);
int CS43L22_run_test(void);
void CS43L22_cleanup(void);
#endif

View File

@@ -3,7 +3,7 @@
extern ADC_HandleTypeDef hadc1;
void DNI_show_celsius(void);
void DNI_show_fahrenheit(void);
int DNI_show_celsius(void);
int DNI_show_fahrenheit(void);
#endif

View File

@@ -1,7 +1,7 @@
#ifndef __LIS302DL
#define __LIS302DL
void LIS302DL_run_test(void);
void LIS302DL_run_test_dynamic(void);
int LIS302DL_run_test(void);
int LIS302DL_run_test_dynamic(void);
#endif

View File

@@ -1,8 +1,8 @@
#ifndef __LSM9DS1
#define __LSM9DS1
void LSM9DS1_test_accel(void);
int LSM9DS1_test_accel(void);
void LSM9DS1_cleanup_accel(void);
void LSM9DS1_test_magnet(void);
int LSM9DS1_test_magnet(void);
#endif

View File

@@ -1,6 +1,6 @@
#ifndef __MP45DT02
#define __MP45DT02
void MP45DT02_run_test(void);
int MP45DT02_run_test(void);
#endif

View File

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

View File

@@ -1,6 +1,6 @@
#ifndef __SST25VF016B
#define __SST25VF016B
void SST25VF016B_run_test(void);
int SST25VF016B_run_test(void);
#endif