File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 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) {
664
664
MP_DEFINE_CONST_FUN_OBJ_1 (wifi_radio_stop_dhcp_client_obj , wifi_radio_stop_dhcp_client );
665
665
666
666
//| def start_dhcp_ap(self) -> None:
667
- //| """Starts the access point DHCP client ."""
667
+ //| """Starts the access point DHCP server ."""
668
668
//| ...
669
669
STATIC mp_obj_t wifi_radio_start_dhcp_server (mp_obj_t self ) {
670
670
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) {
673
673
MP_DEFINE_CONST_FUN_OBJ_1 (wifi_radio_start_dhcp_server_obj , wifi_radio_start_dhcp_server );
674
674
675
675
//| 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."""
677
677
//| ...
678
678
STATIC mp_obj_t wifi_radio_stop_dhcp_server (mp_obj_t self ) {
679
679
common_hal_wifi_radio_stop_dhcp_server (self );
You can’t perform that action at this time.
0 commit comments