Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

samples: wifi: radio_test: Improve tone trasmit command description #19817

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion samples/wifi/radio_test/radio_test_subcommands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ Wi-Fi radio test subcommands
- | <val> (Min: -10, Max: 10)
- 0
- Configuration
- Transmit tone frequency in the range of -10 MHz to 10 MHz.
- Tone frequency in the range of -10 MHz to 10 MHz with a resolution of 1 MHz.
The transmit tone frequency will be offset from the center frequency of the selected channel.
* - dpd
- | 0 - DPD bypass
| 1 - Enable DPD
Expand Down
2 changes: 1 addition & 1 deletion samples/wifi/radio_test/src/nrf_wifi_radio_test_shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,7 @@ SHELL_STATIC_SUBCMD_SET_CREATE(
0),
SHELL_CMD_ARG(tx_tone_freq,
NULL,
"<val> - Frequency in the range of -10MHz to 10MHz",
"<val> - Frequency offset with respect to center frequency in the range of -10MHz to 10MHz (resolution 1MHz)",
nrf_wifi_radio_test_set_tx_tone_freq,
2,
0),
Expand Down