add new UI for testing phase, update modules to indicate success or failure in the return value
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#ifndef __EEPROM_24AA02E48
|
||||
#define __EEPROM_24AA02E48
|
||||
|
||||
void EEPROM_24AA02E48_run_test(void);
|
||||
int EEPROM_24AA02E48_run_test(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef __CS43L22
|
||||
#define __CS43L22
|
||||
|
||||
void CS43L22_run_test(void);
|
||||
int CS43L22_run_test(void);
|
||||
void CS43L22_cleanup(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#ifndef __MP45DT02
|
||||
#define __MP45DT02
|
||||
|
||||
void MP45DT02_run_test(void);
|
||||
int MP45DT02_run_test(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef __PCA9685
|
||||
#define __PCA9685
|
||||
|
||||
void PCA9685_run_test(void);
|
||||
int PCA9685_run_test(void);
|
||||
void PCA9685_cleanup(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#ifndef __SST25VF016B
|
||||
#define __SST25VF016B
|
||||
|
||||
void SST25VF016B_run_test(void);
|
||||
int SST25VF016B_run_test(void);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user