nochanges

Dependents:   BLE_Acceleration_Statejudging

Fork of nRF51822 by Nordic Semiconductor

Revision:
65:98215c4f3a25
Parent:
45:3c4df37ed83e
--- a/nordic/nrf-sdk/app_common/crc16.h	Mon Sep 08 15:45:22 2014 +0000
+++ b/nordic/nrf-sdk/app_common/crc16.h	Mon Sep 08 17:21:46 2014 +0100
@@ -9,7 +9,7 @@
  * the file.
  *
  */
-
+ 
 /** @file
  *
  * @defgroup crc_compute CRC compute
@@ -18,7 +18,7 @@
  *
  * @brief    This module implements the CRC-16 calculation in the blocks.
  */
-
+ 
 #ifndef CRC16_H__
 #define CRC16_H__
 
@@ -30,13 +30,13 @@
 
 /**@brief Function for calculating CRC-16 in blocks.
  *
- * Feed each consecutive data block into this function, along with the current value of p_crc as
- * returned by the previous call of this function. The first call of this function should pass NULL
+ * Feed each consecutive data block into this function, along with the current value of p_crc as 
+ * returned by the previous call of this function. The first call of this function should pass NULL 
  * as the initial value of the crc in p_crc.
  *
  * @param[in] p_data The input data block for computation.
  * @param[in] size   The size of the input data block in bytes.
- * @param[in] p_crc  The previous calculated CRC-16 value or NULL if first call.
+ * @param[in] p_crc  The previous calculated CRC-16 value or NULL if first call.  
  *
  * @return The updated CRC-16 value, based on the input supplied.
  */
@@ -48,5 +48,5 @@
 
 
 #endif // CRC16_H__
-
+ 
 /** @} */