@@ -32,21 +32,21 @@ Example: to test `Driver_USART2`, set this value to `2`.
3232 - **Stop Bits:** 1
3333 - **Flow Control:** None
3434 - Configurable parameter:
35- - **Mode** — communication mode with the USART Server. Different modes require different physical connections and the
35+ - **Mode** - communication mode with the USART Server. Different modes require different physical connections and the
3636 USART Server must be configured accordingly. For details, see \ref usart_server_con "USART Server connection".
3737
3838- **Tests**: configuration for test execution.
39- - **Default settings** — default parameters for data exchange tests. Typically, a single feature is varied while all
39+ - **Default settings** - default parameters for data exchange tests. Typically, a single feature is varied while all
4040 other parameters use defaults. For defaults used by each function, see \ref usart_tests_data_xchg.
41- - **Baudrate** — minimum and maximum bus speeds used by \ref USART_Baudrate_Min and \ref USART_Baudrate_Max.
42- - **Number of Items** — a selection of item counts (including unusual/odd counts) used by \ref USART_Number_Of_Items
41+ - **Baudrate** - minimum and maximum bus speeds used by \ref USART_Baudrate_Min and \ref USART_Baudrate_Max.
42+ - **Number of Items** - a selection of item counts (including unusual/odd counts) used by \ref USART_Number_Of_Items
4343 to verify transfers comply with the CMSIS-Driver specification.
4444
45- **Tests** section — enable/disable test groups (and individual tests):
46- - **Driver Management** — see \ref usart_tests_drv_mgmt.
47- - **Data Exchange** — see \ref usart_tests_data_xchg.
48- - **Modem** — see \ref usart_tests_modem.
49- - **Event** — see \ref usart_tests_evt.
45+ **Tests** section - enable/disable test groups (and individual tests):
46+ - **Driver Management** - see \ref usart_tests_drv_mgmt.
47+ - **Data Exchange** - see \ref usart_tests_data_xchg.
48+ - **Modem** - see \ref usart_tests_modem.
49+ - **Event** - see \ref usart_tests_evt.
5050
5151*/
5252
@@ -84,9 +84,9 @@ Communication settings are defined in **USART_Server_Config.h** file.
8484
8585\subsection usart_server_config_detail Configuration settings
8686
87- - **Driver_USART#** — selects the USART driver instance used by the Server.
87+ - **Driver_USART#** - selects the USART driver instance used by the Server.
8888- **Communication settings**:
89- - **Mode** — defines the mode used for command exchange (must match DUT setup).
89+ - **Mode** - defines the mode used for command exchange (must match DUT setup).
9090 - Fixed parameters used for command exchange:
9191 - **Baudrate:** 115200
9292 - **Data Bits:** 8
@@ -97,17 +97,17 @@ Communication settings are defined in **USART_Server_Config.h** file.
9797\section usart_server_commands Commands
9898Commands are human-readable (ASCII) for easier analysis with a USART bus analyzer.
9999
100- - **GET VER** — get Server version
101- - **GET CAP** — get Server capabilities (auto-detected upon reception)
102- - **SET BUF** — initialize Rx/Tx buffer content
103- - **GET BUF** — retrieve Rx/Tx buffer content
104- - **SET COM** — specify transfer configuration for the next **XFER**
105- - **XFER** — trigger a transfer
106- - **GET CNT** — retrieve number of items transferred in the last transfer
107- - **SET BRK** — generate break signal
108- - **GET BRK** — read break signal status
109- - **SET MDM** — activate modem lines
110- - **GET MDM** — read modem line status
100+ - **GET VER** - get Server version
101+ - **GET CAP** - get Server capabilities (auto-detected upon reception)
102+ - **SET BUF** - initialize Rx/Tx buffer content
103+ - **GET BUF** - retrieve Rx/Tx buffer content
104+ - **SET COM** - specify transfer configuration for the next **XFER**
105+ - **XFER** - trigger a transfer
106+ - **GET CNT** - retrieve number of items transferred in the last transfer
107+ - **SET BRK** - generate break signal
108+ - **GET BRK** - read break signal status
109+ - **SET MDM** - activate modem lines
110+ - **GET MDM** - read modem line status
111111
112112\note For detailed command descriptions, see **README.md** in project root.
113113
@@ -159,13 +159,13 @@ create a new solution from **template**:
159159 \image html usart_server_new_sol_template.png
1601604. Choose **Solution Base Folder**, click **Create**.
161161 \image html usart_server_new_sol_create.png
162- 5. Select the board layer that provides an USART Driver.
163- 6. If the board’ s USART is not routed to ARDUINO (or a different peripheral is required)
162+ 5. Select the board layer that provides an USART Driver, click **OK** .
163+ 6. If the board' s USART is not routed to ARDUINO (or a different peripheral is required)
164164 , open **USART_Server_Config.h**, **Open Preview** and edit **Driver_USART#** to
165165 the required instance.
1661667. Build and run the **USART Server application** on your hardware.
167167
168- \note **IMPORTANT:** The target board’ s USART CMSIS-Driver must be **fully CMSIS compliant**!
168+ \note **IMPORTANT:** The target board' s USART CMSIS-Driver must be **fully CMSIS compliant**!
169169\note The USART Server for **build-type: Debug** displays command execution on an STDOUT channel (typically Virtual COM port via Debug adapter).
170170
171171\section usart_server_troubleshooting Troubleshooting
@@ -175,10 +175,10 @@ create a new solution from **template**:
175175 - Verify the correct driver instance in `USART_Server_Config.h`.
176176 - Ensure communication settings (mode) match between Server and Driver Validation; if changed, rebuild and reflash.
177177
178- 2. Debug message **“ Server Start failed!” ** (build-type: Debug)
178+ 2. Debug message **" Server Start failed!" ** (build-type: Debug)
179179 - Check heap (must be > `2 * USART_SERVER_BUF_SIZE`).
180- - Verify RTOS allows ≥ **512 bytes** allocation for the Server main thread (e.g., *Global Dynamic Memory size* in `RTX_Config.h` if RTX5).
181- - Ensure the Server’ s USART driver supports all fixed settings:
180+ - Verify RTOS allows >= **512 bytes** allocation for the Server main thread (e.g., *Global Dynamic Memory size* in `RTX_Config.h` if RTX5).
181+ - Ensure the Server' s USART driver supports all fixed settings:
182182 - Baudrate 115200, 8-N-1, Flow Control None.
183183
184184*/
0 commit comments