fix(esp8266): Fix send softap event id error

This commit is contained in:
Zhang Jun Hao
2018-06-28 17:52:13 +08:00
parent 6ab3c2ced0
commit 922b2819ff
6 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,8 @@
gwen:
crypto: 137694e
espnow: 137694e
core: bc4803f
net80211: 34c6b8d
core: 52dd0c7
net80211: 52dd0c7
pp: 137694e
pwm: 0181338
smartconfig:9ec59b5

Binary file not shown.

Binary file not shown.

View File

@ -251,6 +251,10 @@ static esp_err_t esp_system_event_debug(system_event_t *event)
MAC2STR(stadisconnected->mac), stadisconnected->aid);
break;
}
case SYSTEM_EVENT_AP_STAIPASSIGNED: {
ESP_LOGD(TAG, "SYSTEM_EVENT_AP_STAIPASSIGNED");
break;
}
case SYSTEM_EVENT_AP_PROBEREQRECVED: {
system_event_ap_probe_req_rx_t *ap_probereqrecved = &event->event_info.ap_probereqrecved;
ESP_LOGD(TAG, "SYSTEM_EVENT_AP_PROBEREQRECVED, rssi:%d, mac:" MACSTR, \