Skip to content
Snippets Groups Projects
Commit 326beaa4 authored by EmilioCorigliano's avatar EmilioCorigliano Committed by Alberto Nidasio
Browse files

[I2C] Removed already solved todo and fixed documentation

parent b2a9d143
Branches
Tags
Loading
...@@ -44,7 +44,7 @@ namespace Boardcore ...@@ -44,7 +44,7 @@ namespace Boardcore
* *
* This is NOT a thread safe driver. The features supported are: * This is NOT a thread safe driver. The features supported are:
* - Only Master logic; * - Only Master logic;
* - Standard/Fast speed modes; * - Standard, Fast and Fast plus (if supported) speed modes;
* - 7bit addressing; * - 7bit addressing;
* - Exposes basic read or write methods with the option for the write method to * - Exposes basic read or write methods with the option for the write method to
* not generate a STOP condition; * not generate a STOP condition;
...@@ -62,7 +62,6 @@ public: ...@@ -62,7 +62,6 @@ public:
READ = 1 READ = 1
}; };
// [TODO] limit speed possibilities at compile time with ifdefs?
enum Speed : uint8_t enum Speed : uint8_t
{ {
STANDARD = 0, STANDARD = 0,
...@@ -82,8 +81,8 @@ public: ...@@ -82,8 +81,8 @@ public:
}; };
/** /**
* @brief Error enums with a value that makes it possible to or them and * @brief Error enums with a value that makes it possible to keep the
* report more than one error at once * "or-red" value to store more errors.
*/ */
enum Errors : uint16_t enum Errors : uint16_t
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment