Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
mbed-os/features/netsocket/WiFiAccessPoint.cpp
- Committer:
- demayer
- Date:
- 2020-04-22
- Revision:
- 2:c7897a3f5f11
- Parent:
- 0:6bf0743ece18
File content as of revision 2:c7897a3f5f11:
#include "netsocket/WiFiAccessPoint.h" WiFiAccessPoint::WiFiAccessPoint() { memset(&_ap, 0, sizeof(_ap)); } WiFiAccessPoint::WiFiAccessPoint(nsapi_wifi_ap_t ap) { _ap = ap; } const char *WiFiAccessPoint::get_ssid() const { return _ap.ssid; } const uint8_t *WiFiAccessPoint::get_bssid() const { return _ap.bssid; } nsapi_security_t WiFiAccessPoint::get_security() const { return _ap.security; } int8_t WiFiAccessPoint::get_rssi() const { return _ap.rssi; } uint8_t WiFiAccessPoint::get_channel() const { return _ap.channel; }