Maxim Integrated / Mbed 2 deprecated MAX31856_example_program

Dependencies:   MAX31856 mbed

Fork of MAX31856_example_program by Central Applications - Mbed Code repo

Revision:
10:4b907f32b4d4
Parent:
9:2d284cc2f65c
Child:
11:6e9902271e34
--- a/MAX31856.h	Tue Aug 01 03:37:57 2017 +0000
+++ b/MAX31856.h	Tue Aug 01 03:39:32 2017 +0000
@@ -537,38 +537,3 @@
 };
 
 #endif  /* __MAX31856_H_ */
-
-
-
-//*****************************************************************************    
-//EXTRA
-//*****************************************************************************    
-//    /** 
-//    * @brief  Check the fault stautus register to see if there is anything wrong with thermocouple connections or if there are any faults 
-//    * @return       \li 1 if no faults are present
-//    *               \li 0 if there is a fault and there needs to be information printed to the console to help diagnose issues
-//    */
-//    bool checkFaultsAll();
-//
-//    /**
-//    * @brief This function is to read current contents of register, manipulate the contents, then rewrite the specific register\n
-//    *               \li Read the value of a register from contents of register matching the parameter read_address
-//    *               \li Clear the bits needed to be changed by bitwise ANDing the read value with the 8 bit parameter clear_bits
-//    *               \li Set the bits of interest in the 8 bit value by bitwise ORing the value from step two with parameter val
-//    *               \li Rewrite to the register with the new 8 bit value to the register with the address with parameter write_address
-//    * @param temp - value to be converted
-//    * @return       \li converted 2's complement value to 8 bit signed integer
-//    */
-//    int8_t twosComplimentToSigned8(int8_t temp);
-//
-//
-//    /**
-//    * @brief This function is to read current contents of register, manipulate the contents, then rewrite the specific register\n
-//    *               \li Read the value of a register from contents of register matching the parameter read_address
-//    *               \li Clear the bits needed to be changed by bitwise ANDing the read value with the 16 bit parameter clear_bits
-//    *               \li Set the bits of interest in the 16 bit value by bitwise ORing the value from step two with parameter val
-//    *               \li Rewrite to the register with the new 16 bit value to the register with the address with parameter write_address
-//    * @param temp - value to be converted
-//    * @return       \li  converted 2's complement value to 16 bit signed integer
-//    */
-//    int16_t twosComplimentToSigned16(int16_t temp);