This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
您好!
我尝试使用证书将我的模块与 WiFi Enterprise 上的 AT 命令连接,因为我使用了文档"SimpleLink Wi-FiAT Command User's Guide"
要连接,请使用以下命令:
AT+WlanConnect =[SSID]、[BSSID]、[SecurityType]、[SecurityKey]、[SecurityExtUser]、[SecurityExtAnonUser]、
[安全性 ExtEapMethod]
我有来自事件 的反馈:+EventWlan
在此帧中、我看到事件 与值3 "断开连接"(请参阅 "表6-56)。 +EventWlan WLAN 异步事件"、位于 AT Command 用户指南中)
在文档中,我们可以看到“Value3:原因”,您能告诉我在哪里可以找到代码“原因”吗??
示例:
+eventwlan:disconnect、SAM_smart_tool、0x96:0x2:0xac:0x2:0x43:0xc、200
代码 200 是什么意思?
真诚
示例:
================================================================================================
AT 命令示例 Ver: 1.1.2
================================================================================================
芯片:0x31100019
MAC:3.7.0.1
PHY:3.1.0.26
NWP:4.9.0.2
ROM:8738
主机:3.0.1.70
MAC 地址:34:03:DE:11:35:75
================================================================================================
输入 AT 命令:
AT+WlanConnect = TP-LINK_3A8A、wpa_ENT、sam、theordore、Theodore、TTLS_MSCHAPv2
好的
+eventwlan:disconnect、TP-LINK_3A8A、0x18:0xd6:0xc7:0xcd:0x3a:0x8a、210 // 代码 210 是什么意思?
+eventwlan:disconnect、TP-LINK_3A8A、0x18:0xd6:0xc7:0xcd:0x3a:0x8a、1 // 代码 1 是什么意思?
AT+FileGetFileList
+filegetfilelist:dummy-root-ca-cert、3656、no_failsafe、1.
+filegetfilelist:/tmp/crashminidump.bin、28232、no_failsafe、7.
+filegetfilelist:/sys/phya.cal、11848、not _valid|open_write、6.
+filegetfilelist:/sys/ipcfg.ini、3656、sys_file、2.
+filegetfilelist:/sys/stacfg.ini、3656、sys_file、2.
+filegetfilelist:/sys/ap.cfg、3656、sys_file、2.
+filegetfilelist:/sys/dhcpsrv.cfg、3656、sys_file、2.
+filegetfilelist:/sys/httpsrv.cfg、3656、sys_file、2.
+filegetfilelist:/sys/mode.cfg、3656、sys_file、2.
+filegetfilelist:/sys/devname.cfg、3656、sys_file、2.
+filegetfilelist:/sys/phybg.cal、11848、sys_file、6.
+filegetfilelist:/sys/certstore.lst、7752、secure|sys_file|public_write、4.
+filegetfilelist:/sys/servicepack.ucf、134728、secure|sys_file|public_write、66
+filegetfilelist:/sys/mcuflashimg.bin、1052232、secure|sys_file|public_write、514
+filegetfilelist:/sys/mcuflashimghash.bin、3656、secure|no_failure|sys_file、2.
+filegetfilelist:/sys/cert/ca.der、3656、secure|no_failure|sys_file|public_write
、2.
+filegetfilelist:/sys/cert/client.der、3656、secure|no_failure|sys_file|public_w
RITE、2.
+filegetfilelist:/sys/cert/private.key、3656、secure|no_failure|sys_file|public_
写入、2.
+filegetfilelist:/sys/factory.img、261704、secure|no_failure|sys_file、65
+filegetfilelist:/sys/ucf_signatures.bin、3656、no_failsafe | sys_file、1.
+filegetfilelist:/sys/phypwr.cal、3656、no_failsafe | sys_file|1.
好的
您好!
您在 wlan.h 文件中找到的断开原因代码:
/* WLAN Disconnect Reason Codes */ #define SL_WLAN_DISCONNECT_UNSPECIFIED (1) #define SL_WLAN_DISCONNECT_AUTH_NO_LONGER_VALID (2) #define SL_WLAN_DISCONNECT_DEAUTH_SENDING_STA_LEAVING (3) #define SL_WLAN_DISCONNECT_INACTIVITY (4) #define SL_WLAN_DISCONNECT_TOO_MANY_STA (5) #define SL_WLAN_DISCONNECT_FRAME_FROM_NONAUTH_STA (6) #define SL_WLAN_DISCONNECT_FRAME_FROM_NONASSOC_STA (7) #define SL_WLAN_DISCONNECT_DISS_SENDING_STA_LEAVING (8) #define SL_WLAN_DISCONNECT_STA_NOT_AUTH (9) #define SL_WLAN_DISCONNECT_POWER_CAPABILITY_INVALID (10) #define SL_WLAN_DISCONNECT_SUPPORTED_CHANNELS_INVALID (11) #define SL_WLAN_DISCONNECT_INVALID_IE (13) #define SL_WLAN_DISCONNECT_MIC_FAILURE (14) #define SL_WLAN_DISCONNECT_FOURWAY_HANDSHAKE_TIMEOUT (15) #define SL_WLAN_DISCONNECT_GROUPKEY_HANDSHAKE_TIMEOUT (16) #define SL_WLAN_DISCONNECT_REASSOC_INVALID_IE (17) #define SL_WLAN_DISCONNECT_INVALID_GROUP_CIPHER (18) #define SL_WLAN_DISCONNECT_INVALID_PAIRWISE_CIPHER (19) #define SL_WLAN_DISCONNECT_INVALID_AKMP (20) #define SL_WLAN_DISCONNECT_UNSUPPORTED_RSN_VERSION (21) #define SL_WLAN_DISCONNECT_INVALID_RSN_CAPABILITIES (22) #define SL_WLAN_DISCONNECT_IEEE_802_1X_AUTHENTICATION_FAILED (23) #define SL_WLAN_DISCONNECT_CIPHER_SUITE_REJECTED (24) #define SL_WLAN_DISCONNECT_DISASSOC_QOS (32) #define SL_WLAN_DISCONNECT_DISASSOC_QOS_BANDWIDTH (33) #define SL_WLAN_DISCONNECT_DISASSOC_EXCESSIVE_ACK_PENDING (34) #define SL_WLAN_DISCONNECT_DISASSOC_TXOP_LIMIT (35) #define SL_WLAN_DISCONNECT_STA_LEAVING (36) #define SL_WLAN_DISCONNECT_STA_DECLINED (37) #define SL_WLAN_DISCONNECT_STA_UNKNOWN_BA (38) #define SL_WLAN_DISCONNECT_STA_TIMEOUT (39) #define SL_WLAN_DISCONNECT_STA_UNSUPPORTED_CIPHER_SUITE (40) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_NONE (100) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_LOW_TX_RATE (104) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_LOW_SNR (105) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_LOW_QUALITY (106) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_TSPEC_REJECTED (107) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_MAX_TX_RETRIES (108) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_BSS_LOSS (109) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_BSS_LOSS_DUE_TO_MAX_TX_RETRY (110) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_SWITCH_CHANNEL (111) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_AP_DISCONNECT (112) #define SL_WLAN_DISCONNECT_ROAMING_TRIGGER_SECURITY_ATTACK (113) #define SL_WLAN_DISCONNECT_USER_INITIATED (200) #define SL_WLAN_DISCONNECT_AUTH_TIMEOUT (202) #define SL_WLAN_DISCONNECT_ASSOC_TIMEOUT (203) #define SL_WLAN_DISCONNECT_SECURITY_FAILURE (204) #define SL_WLAN_DISCONNECT_WHILE_CONNNECTING (208) #define SL_WLAN_DISCONNECT_MISSING_CERT (209) #define SL_WLAN_DISCONNECT_CERTIFICATE_EXPIRED (210)
1月