Skip to content
Open
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
2 changes: 1 addition & 1 deletion source/apps/blaster/wifi_blaster.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ static void active_msmt_log_message( blaster_log_level_t level,char *fmt, ...)
wifi_util_dbg_print(WIFI_BLASTER, msg);
}

static char *active_msmt_status_to_str(active_msmt_status_t status)
char *active_msmt_status_to_str(active_msmt_status_t status)
Comment thread
DharmalakshmiA marked this conversation as resolved.
{
switch (status)
{
Expand Down
2 changes: 1 addition & 1 deletion source/apps/blaster/wifi_blaster.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ void process_active_msmt_diagnostics (int ap_index);

void stream_client_msmt_data(bool ActiveMsmtFlag);
wifi_actvie_msmt_t *get_wifi_blaster();

char *active_msmt_status_to_str(active_msmt_status_t status);
Comment thread
DharmalakshmiA marked this conversation as resolved.
#ifdef __cplusplus
}
#endif
Expand Down
4 changes: 3 additions & 1 deletion source/apps/blaster/wifi_single_client_msmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1936,9 +1936,11 @@ void stream_client_msmt_data(bool ActiveMsmtFlag)
return;
}

wifi_util_info_print(WIFI_BLASTER,"%s:%d status of blaster: %s\n", __func__, __LINE__, active_msmt_status_to_str(act_monitor->status));
Comment thread
DharmalakshmiA marked this conversation as resolved.

if (ctrl->network_mode == rdk_dev_mode_type_gw) {
upload_single_client_active_msmt_data(sta);
} else if (act_monitor->status != ACTIVE_MSMT_STATUS_SUCCEED && ctrl->network_mode == rdk_dev_mode_type_ext) {
} else if (ctrl->network_mode == rdk_dev_mode_type_ext) {
pod_upload_single_client_active_msmt_data(sta);
}
}
Expand Down
Loading