INSAT Mini Project

Dependencies:   ST_INTERFACES X_NUCLEO_COMMON

Fork of X_NUCLEO_6180XA1 by ST

Revision:
46:116dadbc80f1
Parent:
4:a5abf7757947
--- a/Components/Interfaces/GenericSensor.h	Tue Mar 15 16:26:36 2016 +0000
+++ b/Components/Interfaces/GenericSensor.h	Thu May 19 14:11:25 2016 +0000
@@ -54,14 +54,14 @@
      * @param[out]  ptr Pointer to device specific initalization structure
      * @return      0 in case of success, an error code otherwise
      */
-    virtual int Init() = 0;
+    virtual int Init(void *ptr) = 0;
 
     /**
      * @brief       Get ID of sensor
      * @param[out]  id Pointer to where to store the ID to
      * @return      0 in case of success, an error code otherwise
      */
-    virtual int ReadID() = 0;
+    virtual int ReadID(uint8_t *id) = 0;
 };
 
 #endif /* __GENERIC_SENSOR_CLASS_H */