Skip to content

Commit 9cd581f

Browse files
committed
Provide very bare-bones minimal success/error codes for CAN API.
1 parent 4a02bfc commit 9cd581f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

api/HardwareCAN.h

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ enum class CanBitRate : int
3939
BR_1000k = 1000000,
4040
};
4141

42+
/**************************************************************************************
43+
* CONSTANTS
44+
**************************************************************************************/
45+
46+
static int constexpr CAN_GENERIC_SUCCESS = 1;
47+
static int constexpr CAN_GENERIC_ERROR = -1;
48+
4249
/**************************************************************************************
4350
* NAMESPACE
4451
**************************************************************************************/

0 commit comments

Comments
 (0)