Official interfaces for ST components.

Dependents:   X_NUCLEO_IKS01A1 mDot_X_NUCLEO_IKS01A1 53L0A1 X_NUCLEO_IKS01A1 ... more

Fork of ST_INTERFACES by Davide Aliprandi

This library contains all abstract classes which together constitute the common API to which all existing and future ST components will adhere to.

Revision:
4:8f70f7159316
Parent:
3:b1bb477e115e
--- a/Communications/Nfc.h	Fri Mar 10 10:50:53 2017 +0100
+++ b/Communications/Nfc.h	Fri Mar 10 11:03:17 2017 +0100
@@ -65,21 +65,21 @@
 
     /**
      * Read data from the tag.
-     * @param Offset Read offset.
-     * @param NbByteToRead Number of bytes to read.
-     * @param[out] pBufferRead Buffer to store the read data into.
+     * @param offset Read offset.
+     * @param nb_bytes_to_read Number of bytes to read.
+     * @param[out] p_buffer_read Buffer to store the read data into.
      * @return NFC_SUCCESS if no errors 
      */
-    virtual int read_binary(uint16_t Offset, uint8_t NbByteToRead, uint8_t *pBufferRead) = 0;
+    virtual int read_binary(uint16_t offset, uint8_t nb_bytes_to_read, uint8_t *p_buffer_read) = 0;
 
     /**
      * Write data to the tag.
-     * @param Offset Write offset.
-     * @param NbByteToWrite Number of bytes to write.
-     * @param pDataToWrite Buffer to write.
+     * @param offset Write offset.
+     * @param nb_bytes_to_write Number of bytes to write.
+     * @param p_buffer_write Buffer to write.
      * @return NFC_SUCCESS if no errors
      */
-    virtual int update_binary(uint16_t Offset, uint8_t NbByteToWrite, uint8_t *pDataToWrite) = 0;
+    virtual int update_binary(uint16_t offset, uint8_t nb_bytes_to_write, uint8_t *p_buffer_write) = 0;
 
     /**
      * @brief Destructor.