initial commit

Revision:
19:09d58952b65d
Parent:
15:b5d57daeb7c0
Child:
23:bb685f35b08b
--- a/common/utils.h	Tue Aug 20 12:19:31 2019 +0000
+++ b/common/utils.h	Mon Sep 09 05:57:43 2019 +0000
@@ -49,34 +49,34 @@
 extern "C" {
 #endif
 
-/* Utility function to print the status read from the ADI Sense device */
+/* Utility function to print the status read from the ADMW1001 device */
 void utils_printStatus(
     ADMW_STATUS *pStatus);
 
-/* Utility function to print data samples read from the ADI Sense device */
+/* Utility function to print data samples read from the ADMW1001 device */
 void utils_printSamples(
     ADMW_DATA_SAMPLE *pSampleBuffer,
     uint32_t nNumSamples,
     ADMW_MEASUREMENT_MODE eMeasurementMode);
 
-/* Utility function to register callbacks for ADI Sense device notification signals  */
+/* Utility function to register callbacks for ADMW1001 device notification signals  */
 ADMW_RESULT utils_registerCallbacks(
     ADMW_DEVICE_HANDLE hDevice,
     volatile bool *pbDataReady,
     volatile bool *pbError,
     volatile bool *pbAlert);
 
-/* Utility function to de-register callbacks for ADI Sense device notification signals */
+/* Utility function to de-register callbacks for ADMW1001 device notification signals */
 ADMW_RESULT utils_deregisterCallbacks(
     ADMW_DEVICE_HANDLE hDevice);
 
-/* Utility function to run measurements on ADI Sense device, according to its current
+/* Utility function to run measurements on ADMW1001 device, according to its current
  * configuration, and display data samples and device status following each cycle */
 ADMW_RESULT utils_runMeasurement(
     ADMW_DEVICE_HANDLE hDevice,
     ADMW_MEASUREMENT_MODE eMeasurementMode);
  
-/* Utility function to retrieve and print the factory calibration coefficients table from the ADI Sense device */
+/* Utility function to retrieve and print the factory calibration coefficients table from the ADMW1001 device */
 ADMW_RESULT utils_printCalTable(
     ADMW_DEVICE_HANDLE hDevice);