We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96cad11 commit a8ebd44Copy full SHA for a8ebd44
1 file changed
src/i2c/i2cmaster.hpp
@@ -26,6 +26,17 @@ typedef int i2c_inst_t;
26
#include "sdkwrapper.hpp"
27
28
namespace rpp_driver {
29
+/**
30
+ * @brief I2C Master controller class.
31
+ * @details
32
+ * This class provides a set of easy to use member function to control the I2C
33
+ * master controller. Everything operation in this class is polling based and
34
+ * blocking.
35
+ *
36
+ * The ReadBlocking() and WriteBlocking() functions has nostop parameter. To use
37
+ * the restart condition, set this parameter to true.
38
39
+ */
40
class I2cMaster : public I2cMasterInterface {
41
public:
42
/**
0 commit comments