Skip to content

Commit 92f0e7d

Browse files
committedDec 2, 2019
TMC2130 tests
1 parent 8c5d038 commit 92f0e7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1678
-859
lines changed
 

‎CppProperties.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"configurations": [
3+
{
4+
"inheritEnvironments": [
5+
"msvc_x86"
6+
],
7+
"name": "x86-Release",
8+
"includePath": [
9+
"${env.INCLUDE}",
10+
"${workspaceRoot}\\**"
11+
],
12+
"defines": [
13+
"WIN32",
14+
"NDEBUG",
15+
"UNICODE",
16+
"_UNICODE"
17+
],
18+
"intelliSenseMode": "windows-msvc-x86"
19+
}
20+
]
21+
}

‎src/Config.h

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
const int INCOMING_CMD_BUF_SIZE = 100;
1515

16+
const char SPACE[2] = { ' ', '\0' };
17+
const char CRLF[3] = { '\r', '\n', '\0' };
1618
const char COMM_REPORT_CMD_IDLE[4] = {'R', '0', '0', '\0'};
1719
const char COMM_REPORT_CMD_START[4] = {'R', '0', '1', '\0'};
1820
const char COMM_REPORT_CMD_DONE[4] = {'R', '0', '2', '\0'};

0 commit comments

Comments
 (0)
Please sign in to comment.