1-Wire® library for mbed. Complete 1-Wire library that supports our silicon masters along with a bit-bang master on the MAX32600MBED platform with one common interface for mbed. Slave support has also been included and more slaves will be added as time permits.

Dependents:   MAXREFDES131_Qt_Demo MAX32630FTHR_iButton_uSD_Logger MAX32630FTHR_DS18B20_uSD_Logger MAXREFDES130_131_Demo ... more

Superseded by MaximInterface.

Revision:
94:d2dea35b25ea
Parent:
93:e496a45ce796
Child:
95:5ebdf5d955f4
diff -r e496a45ce796 -r d2dea35b25ea Slaves/Switches/DS2413/DS2413.h
--- a/Slaves/Switches/DS2413/DS2413.h	Fri Jun 24 21:06:46 2016 +0000
+++ b/Slaves/Switches/DS2413/DS2413.h	Fri Jun 24 21:12:26 2016 +0000
@@ -79,7 +79,7 @@
         DS2413(RandomAccessRomIterator &selector);
 
         /**********************************************************//**
-        * @brief pio_access_read_chA()
+        * @brief pioAccessReadChA()
         *
         * @details reads state of pio
         *
@@ -91,10 +91,10 @@
         *
         * @return CmdResult - result of operation
         **************************************************************/
-        CmdResult pio_access_read_chA(uint8_t & val);
+        CmdResult pioAccessReadChA(uint8_t & val);
 
         /**********************************************************//**
-        * @brief pio_access_read_chB()
+        * @brief pioAccessReadChB()
         *
         * @details reads state of pio
         *
@@ -106,10 +106,10 @@
         *
         * @return CmdResult - result of operation
         **************************************************************/
-        CmdResult pio_access_read_chB(uint8_t & val);
+        CmdResult pioAccessReadChB(uint8_t & val);
 
         /**********************************************************//**
-        * @brief pio_acess_write_chA()
+        * @brief pioAccessWriteChA()
         *
         * @details writes to pio
         *
@@ -121,10 +121,10 @@
         *
         * @return CmdResult - result of operation
         **************************************************************/
-        CmdResult pio_access_write_chA(uint8_t val);
+        CmdResult pioAccessWriteChA(uint8_t val);
 
         /**********************************************************//**
-        * @brief pio_acess_write_chB()
+        * @brief pioAccessWriteChB()
         *
         * @details writes to pio
         *
@@ -136,10 +136,10 @@
         *
         * @return CmdResult - result of operation
         **************************************************************/
-        CmdResult pio_access_write_chB(uint8_t val);
+        CmdResult pioAccessWriteChB(uint8_t val);
 
         /**********************************************************//**
-        * @brief pio_acess_write_chAB()
+        * @brief pioAccessWriteChAB()
         *
         * @details writes to pio
         *
@@ -151,13 +151,13 @@
         *
         * @return CmdResult - result of operation
         **************************************************************/
-        CmdResult pio_access_write_chAB(uint8_t val);
+        CmdResult pioAccessWriteChAB(uint8_t val);
 
     private:
 
-        CmdResult pio_access_read(uint8_t & val);
+        CmdResult pioAccessRead(uint8_t & val);
 
-        CmdResult pio_access_write(uint8_t val);
+        CmdResult pioAccessWrite(uint8_t val);
     };
 }