This is an automated email from the ASF dual-hosted git repository.
jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 13479e0 wireless: gs2200m: Update help messages in gs2200m_main.c
13479e0 is described below
commit 13479e0a8cf12c27ee6abd9f4727abf764473ac6
Author: Masayuki Ishikawa <[email protected]>
AuthorDate: Fri May 22 16:24:06 2020 +0900
wireless: gs2200m: Update help messages in gs2200m_main.c
Signed-off-by: Masayuki Ishikawa <[email protected]>
---
wireless/gs2200m/gs2200m_main.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/wireless/gs2200m/gs2200m_main.c b/wireless/gs2200m/gs2200m_main.c
index 6667b6c..01f7000 100644
--- a/wireless/gs2200m/gs2200m_main.c
+++ b/wireless/gs2200m/gs2200m_main.c
@@ -1562,12 +1562,13 @@ static int gs2200m_loop(FAR struct gs2200m_s *priv)
static void _show_usage(FAR char *cmd)
{
fprintf(stderr,
- "Usage: %s [-a [ch]] ssid key \n\n", cmd);
+ "Usage: %s [-a [ch]] ssid passphrase(key) \n\n", cmd);
fprintf(stderr,
"AP mode : specify -a option (optionally with channel) with ssid\n"
- " and 10 hex digits for WEP key \n");
+ " and 8 to 63 ascii passphrase for WPA2-PSK \n"
+ " or 10 hex digits key for WEP \n");
fprintf(stderr,
- "STA mode: specify ssid and passphrase (key) for WPA/WPA2 PSK \n");
+ "STA mode: specify ssid and passphrase for WPA/WPA2 PSK \n");
}
/****************************************************************************