Implementation of 1-Wire with added Alarm Search Functionality

Dependents:   Max32630_One_Wire_Interface

Revision:
76:84e6c4994e29
Parent:
75:8b627804927c
Child:
77:529edb329ee0
--- a/Masters/OneWireMaster.h	Fri May 13 14:52:50 2016 -0500
+++ b/Masters/OneWireMaster.h	Sat May 14 14:27:56 2016 -0500
@@ -39,219 +39,134 @@
 
 namespace OneWire
 {
-    namespace Masters
+    /// Base class for all 1-Wire Masters.
+    class OneWireMaster
     {
-        /// Base class for all 1-Wire Masters.
-        class OneWireMaster
+    public:
+        /// Speed of the 1-Wire bus
+        enum OWSpeed
         {
-        public:
-            /// Speed of the 1-Wire bus
-            enum OWSpeed
-            {
-                StandardSpeed = 0x00,
-                OverdriveSpeed = 0x01
-            };
-
-            /// Level of the 1-Wire bus
-            enum OWLevel
-            {
-                NormalLevel = 0x00,
-                StrongLevel = 0x02
-            };
+            StandardSpeed = 0x00,
+            OverdriveSpeed = 0x01
+        };
 
-            /// Search direction for the Triplet
-            enum SearchDirection
-            {
-                WriteZero = 0,
-                WriteOne = 1
-            };
+        /// Level of the 1-Wire bus
+        enum OWLevel
+        {
+            NormalLevel = 0x00,
+            StrongLevel = 0x02
+        };
 
-            /// Result of all 1-Wire commands
-            enum CmdResult
-            {
-                Success,
-                CommunicationWriteError,
-                CommunicationReadError,
-                TimeoutError,
-                OperationFailure
-            };
-
-            /// State used by all ROM ID search functions.
-            struct SearchState
-            {
-                RomId romId;
-                uint8_t last_discrepancy;
-                uint8_t last_family_discrepancy;
-                bool last_device_flag;
+        /// Search direction for the Triplet
+        enum SearchDirection
+        {
+            WriteZero = 0,
+            WriteOne = 1
+        };
 
-                /// Reset to the search state to start at the beginning.
-                void reset()
-                {
-                    last_discrepancy = 0;
-                    last_device_flag = false;
-                    last_family_discrepancy = 0;
-                    romId.reset();
-                }
-
-                SearchState() { reset(); }
-            };
+        /// Result of all 1-Wire commands
+        enum CmdResult
+        {
+            Success,
+            CommunicationWriteError,
+            CommunicationReadError,
+            TimeoutError,
+            OperationFailure
+        };
 
-            /// Perform a CRC16 calculation.
-            /// @param crc16 Beginning state of the CRC generator.
-            /// @param data Data to pass though the CRC generator.
-            /// @returns The calculated CRC16.
-            static uint16_t calculateCrc16(uint16_t crc16, uint16_t data);
-
-            /// Perform a CRC16 calculation with variable length data.
-            /// @param[in] data Data array to pass through the CRC generator.
-            /// @param data_offset Offset of the data array to begin processing.
-            /// @param data_len Length of the data array to process.
-            /// @param crc Beginning state of the CRC generator.
-            /// @returns The calculated CRC16.
-            static uint16_t calculateCrc16(const uint8_t * data, size_t dataOffset, size_t dataLen, uint16_t crc = 0);
-
-            /// Allow freeing through a base class pointer.
-            virtual ~OneWireMaster() { }
+        /// Perform a CRC16 calculation.
+        /// @param crc16 Beginning state of the CRC generator.
+        /// @param data Data to pass though the CRC generator.
+        /// @returns The calculated CRC16.
+        static uint16_t calculateCrc16(uint16_t crc16, uint16_t data);
 
-            /// Initialize a master for use.
-            virtual CmdResult OWInitMaster() = 0;
-
-            /// Reset all of the devices on the 1-Wire bus and check for a presence pulse.
-            /// @returns OperationFailure if reset was performed but no presence pulse was detected.
-            virtual CmdResult OWReset() = 0;
-
-            /// Send and receive one bit of communication and set a new level on the 1-Wire bus.
-            /// @param[in,out] sendRecvBit Buffer containing the bit to send on 1-Wire bus in lsb.
-            ///                            Read data from 1-Wire bus will be returned in lsb.
-            /// @param afterLevel Level to set the 1-Wire bus to after communication.
-            virtual CmdResult OWTouchBitSetLevel(uint8_t & sendRecvBit, OWLevel afterLevel) = 0;
+        /// Perform a CRC16 calculation with variable length data.
+        /// @param[in] data Data array to pass through the CRC generator.
+        /// @param data_offset Offset of the data array to begin processing.
+        /// @param data_len Length of the data array to process.
+        /// @param crc Beginning state of the CRC generator.
+        /// @returns The calculated CRC16.
+        static uint16_t calculateCrc16(const uint8_t * data, size_t dataOffset, size_t dataLen, uint16_t crc = 0);
 
-            /// Send one byte of communication and set a new level on the 1-Wire bus.
-            /// @param sendByte Byte to send on the 1-Wire bus.
-            /// @param afterLevel Level to set the 1-Wire bus to after communication.
-            virtual CmdResult OWWriteByteSetLevel(uint8_t sendByte, OWLevel afterLevel) = 0;
-
-            /// Receive one byte of communication and set a new level on the 1-Wire bus.
-            /// @param recvByte Buffer to receive the data from the 1-Wire bus.
-            /// @param afterLevel Level to set the 1-Wire bus to after communication.
-            virtual CmdResult OWReadByteSetLevel(uint8_t & recvByte, OWLevel afterLevel) = 0;
+        /// Allow freeing through a base class pointer.
+        virtual ~OneWireMaster() { }
 
-            /// Send a block of communication on the 1-Wire bus.
-            /// @param[in] sendBuf Buffer to send on the 1-Wire bus.
-            /// @param sendLen Length of the buffer to send.
-            virtual CmdResult OWWriteBlock(const uint8_t *sendBuf, uint8_t sendLen);
+        /// Initialize a master for use.
+        virtual CmdResult OWInitMaster() = 0;
 
-            /// Receive a block of communication on the 1-Wire bus.
-            /// @param[out] recvBuf Buffer to receive the data from the 1-Wire bus.
-            /// @param recvLen Length of the buffer to receive.
-            virtual CmdResult OWReadBlock(uint8_t *recvBuf, uint8_t recvLen);
+        /// Reset all of the devices on the 1-Wire bus and check for a presence pulse.
+        /// @returns OperationFailure if reset was performed but no presence pulse was detected.
+        virtual CmdResult OWReset() = 0;
 
-            /// Set the 1-Wire bus communication speed.
-            virtual CmdResult OWSetSpeed(OWSpeed newSpeed) = 0;
-
-            /// Set the 1-Wire bus level.
-            virtual CmdResult OWSetLevel(OWLevel newLevel) = 0;
+        /// Send and receive one bit of communication and set a new level on the 1-Wire bus.
+        /// @param[in,out] sendRecvBit Buffer containing the bit to send on 1-Wire bus in lsb.
+        ///                            Read data from 1-Wire bus will be returned in lsb.
+        /// @param afterLevel Level to set the 1-Wire bus to after communication.
+        virtual CmdResult OWTouchBitSetLevel(uint8_t & sendRecvBit, OWLevel afterLevel) = 0;
 
-            /**********************************************************//**
-            * @brief 1-Wire Triplet operation.
-            *
-            * @details Perform one bit of a 1-Wire search. This command
-            * does two read bits and one write bit. The write bit is either
-            * the default direction (all device have same bit) or in case
-            * of a discrepancy, the 'search_direction' parameter is used.
-            *
-            * @param[in,out] search_direction
-            * Input with desired direction in case both read bits are zero.
-            * Output with direction taken based on read bits.
-            *
-            * @param[out] sbr Bit result of first read operation.
-            * @param[out] tsb Bit result of second read operation.
-            **************************************************************/
-            virtual CmdResult OWTriplet(SearchDirection & searchDirection, uint8_t & sbr, uint8_t & tsb);
+        /// Send one byte of communication and set a new level on the 1-Wire bus.
+        /// @param sendByte Byte to send on the 1-Wire bus.
+        /// @param afterLevel Level to set the 1-Wire bus to after communication.
+        virtual CmdResult OWWriteByteSetLevel(uint8_t sendByte, OWLevel afterLevel) = 0;
+
+        /// Receive one byte of communication and set a new level on the 1-Wire bus.
+        /// @param recvByte Buffer to receive the data from the 1-Wire bus.
+        /// @param afterLevel Level to set the 1-Wire bus to after communication.
+        virtual CmdResult OWReadByteSetLevel(uint8_t & recvByte, OWLevel afterLevel) = 0;
 
-            /// Send one bit of communication and set a new level on the 1-Wire bus.
-            /// @param sendBit Buffer containing the bit to send on 1-Wire bus in lsb.
-            /// @param afterLevel Level to set the 1-Wire bus to after communication.
-            CmdResult OWWriteBitSetLevel(uint8_t sendBit, OWLevel afterLevel) { return OWTouchBitSetLevel(sendBit, afterLevel); }
-
-            /// Receive one bit of communication and set a new level on the 1-Wire bus.
-            /// @param[out] sendRecvBit Read data from 1-Wire bus will be returned in lsb.
-            /// @param afterLevel Level to set the 1-Wire bus to after communication.
-            CmdResult OWReadBitSetLevel(uint8_t & recvBit, OWLevel afterLevel) { recvBit = 0x01; return OWTouchBitSetLevel(recvBit, afterLevel); }
+        /// Send a block of communication on the 1-Wire bus.
+        /// @param[in] sendBuf Buffer to send on the 1-Wire bus.
+        /// @param sendLen Length of the buffer to send.
+        virtual CmdResult OWWriteBlock(const uint8_t *sendBuf, uint8_t sendLen);
 
-            // Alternate forms of read and write functions
-            CmdResult OWWriteBit(uint8_t sendBit) { return OWWriteBitSetLevel(sendBit, NormalLevel); }
-            CmdResult OWReadBit(uint8_t & recvBit) { return OWReadBitSetLevel(recvBit, NormalLevel); }
-            CmdResult OWWriteBitPower(uint8_t sendBit) { return OWWriteBitSetLevel(sendBit, StrongLevel); }
-            CmdResult OWReadBitPower(uint8_t & recvBit) { return OWReadBitSetLevel(recvBit, StrongLevel); }
-            CmdResult OWWriteByte(uint8_t sendByte) { return OWWriteByteSetLevel(sendByte, NormalLevel); }
-            CmdResult OWReadByte(uint8_t & recvByte) { return OWReadByteSetLevel(recvByte, NormalLevel); }
-            CmdResult OWWriteBytePower(uint8_t sendByte) { return OWWriteByteSetLevel(sendByte, StrongLevel); }
-            CmdResult OWReadBytePower(uint8_t & recvByte) { return OWReadByteSetLevel(recvByte, StrongLevel); }
+        /// Receive a block of communication on the 1-Wire bus.
+        /// @param[out] recvBuf Buffer to receive the data from the 1-Wire bus.
+        /// @param recvLen Length of the buffer to receive.
+        virtual CmdResult OWReadBlock(uint8_t *recvBuf, uint8_t recvLen);
 
-            /// Find the 'first' devices on the 1-Wire network.
-            CmdResult OWFirst(SearchState & searchState);
+        /// Set the 1-Wire bus communication speed.
+        virtual CmdResult OWSetSpeed(OWSpeed newSpeed) = 0;
 
-            /// Find the 'next' devices on the 1-Wire network.
-            CmdResult OWNext(SearchState & searchState);
-
-            /// Verify that the device with the specified ROM ID is present.
-            CmdResult OWVerify(const RomId & romId);
+        /// Set the 1-Wire bus level.
+        virtual CmdResult OWSetLevel(OWLevel newLevel) = 0;
 
-            /// Setup the search to find the device type 'family_code'
-            /// on the next call to OWNext() if it is present.
-            void OWTargetSetup(SearchState & searchState);
-
-            /// Setup the search to skip the current device type on the
-            /// next call to OWNext().
-            void OWFamilySkipSetup(SearchState & searchState);
-
-            /// Use Read ROM command to read ROM ID from device on bus.
-            /// @note Only use this command with a single drop bus, data
-            ///       collisions will occur if more than 1 device on bus.
-            /// @param[out] romId ROM ID read from device.
-            CmdResult OWReadRom(RomId & romId);
-
-            /// Issue Skip ROM command on bus.
-            /// @note Only use this command with a single drop bus, data
-            ///       collisions will occur if more than 1 device on bus.
-            CmdResult OWSkipRom();
-
-            /// Use the Match ROM command to select the device by its known ID.
-            /// @param[in] romId ROM ID of device to select.
-            CmdResult OWMatchRom(const RomId & romId);
+        /**********************************************************//**
+        * @brief 1-Wire Triplet operation.
+        *
+        * @details Perform one bit of a 1-Wire search. This command
+        * does two read bits and one write bit. The write bit is either
+        * the default direction (all device have same bit) or in case
+        * of a discrepancy, the 'search_direction' parameter is used.
+        *
+        * @param[in,out] search_direction
+        * Input with desired direction in case both read bits are zero.
+        * Output with direction taken based on read bits.
+        *
+        * @param[out] sbr Bit result of first read operation.
+        * @param[out] tsb Bit result of second read operation.
+        **************************************************************/
+        virtual CmdResult OWTriplet(SearchDirection & searchDirection, uint8_t & sbr, uint8_t & tsb);
 
-            /// Issue Overdrive Skip ROM command on bus.
-            /// @details This command causes all devices supporting Overdrive
-            ///          mode to switch to Overdrive timing.
-            /// @note Only use this command with a single drop bus, data
-            ///       collisions will occur if more than 1 device on bus.
-            CmdResult OWOverdriveSkipRom();
+        /// Send one bit of communication and set a new level on the 1-Wire bus.
+        /// @param sendBit Buffer containing the bit to send on 1-Wire bus in lsb.
+        /// @param afterLevel Level to set the 1-Wire bus to after communication.
+        CmdResult OWWriteBitSetLevel(uint8_t sendBit, OWLevel afterLevel) { return OWTouchBitSetLevel(sendBit, afterLevel); }
 
-            
-            CmdResult OWOverdriveMatchRom(const RomId & romId);
-
-            /// Perform a Resume ROM command on bus.
-            /// @details Resumes communication with the last device selected
-            ///          though a Match ROM or Search ROM operation.
-            CmdResult OWResume();
+        /// Receive one bit of communication and set a new level on the 1-Wire bus.
+        /// @param[out] sendRecvBit Read data from 1-Wire bus will be returned in lsb.
+        /// @param afterLevel Level to set the 1-Wire bus to after communication.
+        CmdResult OWReadBitSetLevel(uint8_t & recvBit, OWLevel afterLevel) { recvBit = 0x01; return OWTouchBitSetLevel(recvBit, afterLevel); }
 
-            /**********************************************************//**
-            * @brief Enumerate all devices on the 1-Wire bus.
-            *
-            * @details The 'OWSearch' function does a general search.  This
-            *        function continues from the previous search state. The
-            *        search state can be reset by using the 'OWFirst'
-            *        function. This function contains one parameter
-            *        'alarm_only'. When 'alarm_only' is TRUE (1) the find
-            *        alarm command 0xEC is sent instead of the normal search
-            *        command 0xF0. Using the find alarm command 0xEC will
-            *        limit the search to only 1-Wire devices that are in an
-            *        'alarm' state.
-            **************************************************************/
-            CmdResult OWSearch(SearchState & searchState);
-        };
-    }
+        // Alternate forms of read and write functions
+        CmdResult OWWriteBit(uint8_t sendBit) { return OWWriteBitSetLevel(sendBit, NormalLevel); }
+        CmdResult OWReadBit(uint8_t & recvBit) { return OWReadBitSetLevel(recvBit, NormalLevel); }
+        CmdResult OWWriteBitPower(uint8_t sendBit) { return OWWriteBitSetLevel(sendBit, StrongLevel); }
+        CmdResult OWReadBitPower(uint8_t & recvBit) { return OWReadBitSetLevel(recvBit, StrongLevel); }
+        CmdResult OWWriteByte(uint8_t sendByte) { return OWWriteByteSetLevel(sendByte, NormalLevel); }
+        CmdResult OWReadByte(uint8_t & recvByte) { return OWReadByteSetLevel(recvByte, NormalLevel); }
+        CmdResult OWWriteBytePower(uint8_t sendByte) { return OWWriteByteSetLevel(sendByte, StrongLevel); }
+        CmdResult OWReadBytePower(uint8_t & recvByte) { return OWReadByteSetLevel(recvByte, StrongLevel); }
+    };
 }
 
 #endif