Skip to content
Merged
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
4 changes: 2 additions & 2 deletions components/drivers/wlan/dev_wlan_mgnt.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ extern "C" {
typedef enum
{
RT_WLAN_EVT_READY = 0, /* connect and prot is ok, You can send data*/
RT_WLAN_EVT_SCAN_DONE, /* Scan a info */
RT_WLAN_EVT_SCAN_REPORT, /* Scan end */
RT_WLAN_EVT_SCAN_DONE, /* Scan end */
RT_WLAN_EVT_SCAN_REPORT, /* Scan a info */
Copy link

Copilot AI Apr 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Consider revising the comment 'Scan a info' for RT_WLAN_EVT_SCAN_REPORT for improved clarity, such as 'Scan information available', if that better describes the event.

Suggested change
RT_WLAN_EVT_SCAN_REPORT, /* Scan a info */
RT_WLAN_EVT_SCAN_REPORT, /* Scan information available */

Copilot uses AI. Check for mistakes.
RT_WLAN_EVT_STA_CONNECTED, /* connect success */
RT_WLAN_EVT_STA_CONNECTED_FAIL, /* connection failed */
RT_WLAN_EVT_STA_DISCONNECTED, /* disconnect */
Expand Down