You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
voidSHTC3_exitOp_Callback(SHTC3_Status_TypeDef status, bool inProcess, char *file, uint16_t line) {} // Empty implementation. You can make your own implementation
451
+
voidSHTC3_exitOp_Callback(SHTC3_Status_TypeDef status, bool inProcess, constchar *file, uint16_t line) {} // Empty implementation. You can make your own implementation
SHTC3_Status_TypeDef sendCommand(SHTC3_MeasurementModes_TypeDef cmd); // Overloaded version of send command to support the "measurement type" commands
64
-
SHTC3_Status_TypeDef abortUpdate(SHTC3_Status_TypeDef status, char *file, uint16_t line); // Used to bail from an update. Sets reading values to known fail state
65
-
SHTC3_Status_TypeDef exitOp(SHTC3_Status_TypeDef status, char *file, uint16_t line); // Used to bail from any other operation - puts the sensor back to sleep
63
+
SHTC3_Status_TypeDef sendCommand(SHTC3_MeasurementModes_TypeDef cmd); // Overloaded version of send command to support the "measurement type" commands
64
+
SHTC3_Status_TypeDef abortUpdate(SHTC3_Status_TypeDef status, constchar *file, uint16_t line); // Used to bail from an update. Sets reading values to known fail state
65
+
SHTC3_Status_TypeDef exitOp(SHTC3_Status_TypeDef status, constchar *file, uint16_t line); // Used to bail from any other operation - puts the sensor back to sleep
66
66
67
67
SHTC3_Status_TypeDef startProcess(void); // Used to wake up the sensor and set the _inProcess variable to true
68
68
SHTC3_Status_TypeDef endProcess(void); // Used to end processes as the user desires
@@ -101,6 +101,6 @@ float SHTC3_raw2DegC(uint16_t T); // Converts SHTC3 T data to deg C
101
101
floatSHTC3_raw2DegF(uint16_t T); // Converts SHTC3 T data to deg F
102
102
floatSHTC3_raw2Percent(uint16_t RH); // Converts SHTC3 RH data to % RH
103
103
104
-
voidSHTC3_exitOp_Callback(SHTC3_Status_TypeDef status, bool inProcess, char *file, uint16_t line) __attribute__((weak)); // Called whenever exitOp is called, which is on most return statements
104
+
voidSHTC3_exitOp_Callback(SHTC3_Status_TypeDef status, bool inProcess, constchar *file, uint16_t line) __attribute__((weak)); // Called whenever exitOp is called, which is on most return statements
0 commit comments