File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -664,7 +664,7 @@ STATIC mp_obj_t wifi_radio_stop_dhcp_client(mp_obj_t self) {
664664MP_DEFINE_CONST_FUN_OBJ_1 (wifi_radio_stop_dhcp_client_obj , wifi_radio_stop_dhcp_client );
665665
666666//| def start_dhcp_ap(self) -> None:
667- //| """Starts the access point DHCP client ."""
667+ //| """Starts the access point DHCP server ."""
668668//| ...
669669STATIC mp_obj_t wifi_radio_start_dhcp_server (mp_obj_t self ) {
670670 common_hal_wifi_radio_start_dhcp_server (self );
@@ -673,7 +673,7 @@ STATIC mp_obj_t wifi_radio_start_dhcp_server(mp_obj_t self) {
673673MP_DEFINE_CONST_FUN_OBJ_1 (wifi_radio_start_dhcp_server_obj , wifi_radio_start_dhcp_server );
674674
675675//| def stop_dhcp_ap(self) -> None:
676- //| """Stops the access point DHCP client . Needed to assign a static IP address."""
676+ //| """Stops the access point DHCP server . Needed to assign a static IP address."""
677677//| ...
678678STATIC mp_obj_t wifi_radio_stop_dhcp_server (mp_obj_t self ) {
679679 common_hal_wifi_radio_stop_dhcp_server (self );
You can’t perform that action at this time.
0 commit comments