Skip to content

Commit 660a322

Browse files
committed
Refactored OpenInterface to open_interface
- templatized OpenInterface class to allow for different implementations by series - abstracted state - tests not related to state machine are passing
1 parent f48e74d commit 660a322

File tree

9 files changed

+898
-1020
lines changed

9 files changed

+898
-1020
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.gtest_build_log.txt
22
documentation/debug.txt
33
documentation/doxygen_log.txt
4-
OpenInterface/gtest/gtest_OpenInterface
54
hardware/gtest/gtest_state
5+
open_interface/gtest/gtest_open_interface

OIDefines.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ enum ReturnCode : int_opt8_t {
4242
NO_DATA_AVAILABLE = -4,
4343
FAILURE_TO_SYNC = -3,
4444
INVALID_MODE_FOR_REQUESTED_OPERATION = -2,
45+
OI_NOT_STARTED = -1,
4546
SUCCESS = 0,
4647
};
4748

0 commit comments

Comments
 (0)