You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-edge/tutorial-c-module-windows.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ The default module code receives messages on an input queue and passes them alon
132
132
)
133
133
```
134
134
135
-
3. Add **my_parson** to the list of libraries in the **target_link_libraries** section of the CMakeLists.txt file.
135
+
3. Add `my_parson` to the list of libraries in the **target_link_libraries** section of the CMakeLists.txt file.
136
136
137
137
4. Save the **CMakeLists.txt** file.
138
138
@@ -172,6 +172,14 @@ The default module code receives messages on an input queue and passes them alon
172
172
4. Find the `InputQueue1Callback` function, and replace the whole function with the following code. This function implements the actual messaging filter. When a message is received, it checks whether the reported temperature exceeds the threshold. If yes, then it forwards the message through its output queue. If not, then it ignores the message.
Copy file name to clipboardExpand all lines: articles/iot-edge/tutorial-c-module.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: shizn
7
7
manager: philmea
8
8
9
9
ms.author: xshi
10
-
ms.date: 08/23/2019
10
+
ms.date: 11/07/2019
11
11
ms.topic: tutorial
12
12
ms.service: iot-edge
13
13
ms.custom: "mvc, seodec18"
@@ -112,7 +112,7 @@ The default module code receives messages on an input queue and passes them alon
112
112
)
113
113
```
114
114
115
-
3. Add **my_parson** to the list of libraries in the **target_link_libraries** function of CMakeLists.txt.
115
+
3. Add `my_parson` to the list of libraries in the **target_link_libraries** function of CMakeLists.txt.
116
116
117
117
4. Save the **CMakeLists.txt** file.
118
118
@@ -152,6 +152,14 @@ The default module code receives messages on an input queue and passes them alon
152
152
1. Replace the entire `InputQueue1Callback` function with the following code. This function implements the actual messaging filter. When a message is received, it checks whether the reported temperature exceeds the threshold. If yes, then it forwards the message through its output queue. If not, then it ignores the message.
0 commit comments