We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68749d4 commit 557f516Copy full SHA for 557f516
src/sfTk/sfTkIBus.h
@@ -62,6 +62,12 @@ const sfTkError_t ksfTkErrBusUnderRead = ksfTkErrBaseBus + 7;
62
*/
63
const sfTkError_t ksfTkErrBusNotEnabled = ksfTkErrBaseBus + 8;
64
65
+/**
66
+ * @brief Returned when the data received is not valid or does not match the expected format.
67
+ *
68
+ */
69
+const sfTkError_t ksfTkErrBusBadData = ksfTkErrFail * (ksfTkErrBaseBus + 9);
70
+
71
/**
72
* @brief Interface that defines the communication bus for the SparkFun Electronics Toolkit.
73
*
src/sfTk/sfTkISerialBus.h
@@ -21,7 +21,7 @@
21
22
const uint8_t ksfTkBusTypeSerialBus = 0x03;
23
24
-class sfTkISerialBus : sfTkIBus
+class sfTkISerialBus : public sfTkIBus
25
{
26
public:
27
0 commit comments