We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5028e commit d4ac8e7Copy full SHA for d4ac8e7
shared-bindings/wifi/Radio.c
@@ -565,6 +565,11 @@ MP_PROPERTY_GETTER(wifi_radio_ipv4_subnet_ap_obj,
565
//| ) -> None:
566
//| """Sets the IP v4 address of the station. Must include the netmask and gateway. DNS address is optional.
567
//| Setting the address manually will stop the DHCP client."""
568
+//|
569
+//| .. note::
570
571
+//| In the raspberrypi port (RP2040 CYW43), the access point needs to be started before the IP v4 address can be set.
572
+//| """
573
//| ...
574
STATIC mp_obj_t wifi_radio_set_ipv4_address(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
575
enum { ARG_ipv4, ARG_netmask, ARG_gateway, ARG_ipv4_dns };
0 commit comments