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: docs/embedded/serial-monitor.md
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,9 @@ The Serial Monitor allows users to configure, monitor, and communicate with seri
14
14
15
15
# [Visual Studio](#tab/visual-studio)
16
16
17
-

17
+
:::image type="complex" source="./media/serial-monitor.png" alt-text="Screenshot of the Visual Studio Serial Monitor window":::
18
+
The window is split into two sections. The top section shows the monitoring mode (serial), Port (virtual COM port COM3), baud rate (115200), line ending (None), and a Stop monitoring button. The bottom section shows the messages, consisting of four lines of the text Hello, World!.
19
+
:::image-end:::
18
20
19
21
## Capabilities
20
22
@@ -42,8 +44,13 @@ The Serial Monitor allows users to configure, monitor, and communicate with seri
42
44
43
45
# [Visual Studio Code](#tab/visual-studio-code)
44
46
45
-

46
-

47
+
:::image type="complex" source="./media/serial-monitor-vscode.png" alt-text="Screenshot of the VS Code Serial Monitor window.":::
48
+
The window is split into two sections. The top section shows the monitoring mode (serial), Port (virtual COM port COM3), baud rate (115200), line ending (None), and a Stop monitoring button. The bottom section where messages are displayed is empty.
49
+
:::image-end:::
50
+
51
+
:::image type="complex" source="./media/serial-monitor-vscode-tcp.png" alt-text="Screenshot of the VS Code TCP Serial Monitor window.":::
52
+
The window is split into two sections. The top section shows the monitoring mode (TCP), Host (::1), Port (1234), and a Start monitoring button. The bottom section shows the messages, starting with "Opening the TCP connection on ::1:1234. Then Connected to ::1:1234. Then five lines of the text Hello, World!. Then Closed the TCP connection ::1:1234.
Copy file name to clipboardExpand all lines: docs/linux/download-install-and-setup-the-linux-development-workload.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ For any of these scenarios, the **Linux development with C++** workload is requi
33
33
1. Look for the installer under the **Apps** results and double-click it. When the installer opens, choose **Modify**, and then click on the **Workloads** tab. Scroll down to **Other toolsets** and select the **Linux development with C++** workload.
34
34
35
35
:::image type="complex" source="./media/linuxworkload.png" alt-text="Screenshot highlighting the Visual C++ for Linux Development workload item in Visual Studio Installer.":::
36
-
The Linux Development workload is selected. The Installation details pane is highlighted, which lists what's included in the workload, including Visual Studio C++ core features, Windows Universal C runtime, Visual C++ for Linux development. An optional component is also selected: Visual C++ tools for CMake and Linux.
36
+
The Linux Development workload is selected. The Installation details pane is highlighted, which lists what's included in the workload. Which includes: Visual Studio C++ core features, Windows Universal C runtime, Visual C++ for Linux development. An optional component is also selected: Visual C++ tools for CMake and Linux.
37
37
:::image-end:::
38
38
39
39
1. If you're targeting IoT or embedded platforms, go to the **Installation details** pane on the right. Under **Linux development with C++**, expand **Optional Components**, and choose the components you need. CMake support for Linux is selected by default.
@@ -101,7 +101,7 @@ The target Linux system must have **openssh-server**, **g++**, **gdb**, and **ma
101
101
sudo apt-get install openssh-server g++ gdb make ninja-build rsync zip
102
102
```
103
103
104
-
You may be prompted for your root password to run the sudo command. If so, enter it and continue. Once complete, the required services and tools are installed.
104
+
You might be prompted for your root password to run the `sudo` command. If so, enter it and continue. Once complete, the required services and tools are installed.
105
105
106
106
1. Ensure the ssh service is running on your Linux computer by running:
107
107
@@ -139,7 +139,7 @@ The target machine running Fedora uses the **dnf** package installer. To downloa
139
139
sudo dnf install openssh-server gcc-g++ gdb ninja-build make rsync zip
140
140
```
141
141
142
-
You may be prompted for your root password to run the sudo command. If so, enter it and continue. Once complete, the required services and tools are installed.
142
+
You might be prompted for your root password to run the sudo command. If so, enter it and continue. Once complete, the required services and tools are installed.
143
143
144
144
1. Ensure the ssh service is running on your Linux computer by running:
0 commit comments