File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
ports/raspberrypi/common-hal/wifi Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -397,10 +397,6 @@ msgstr ""
397
397
msgid "ADC2 is being used by WiFi"
398
398
msgstr ""
399
399
400
- #: ports/raspberrypi/common-hal/wifi/Radio.c
401
- msgid "AP cannot be stopped."
402
- msgstr ""
403
-
404
400
#: shared-bindings/_bleio/Address.c shared-bindings/ipaddress/IPv4Address.c
405
401
#, c-format
406
402
msgid "Address must be %d bytes long"
@@ -1979,6 +1975,10 @@ msgstr ""
1979
1975
msgid "Stereo right must be on PWM channel B"
1980
1976
msgstr ""
1981
1977
1978
+ #: ports/raspberrypi/common-hal/wifi/Radio.c
1979
+ msgid "Stopping AP is not supported."
1980
+ msgstr ""
1981
+
1982
1982
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
1983
1983
msgid "Supply at least one UART pin"
1984
1984
msgstr ""
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ void common_hal_wifi_radio_stop_ap(wifi_radio_obj_t *self) {
190
190
}
191
191
192
192
if (cyw43_tcpip_link_status (& cyw43_state , CYW43_ITF_AP ) != CYW43_LINK_DOWN ) {
193
- mp_raise_NotImplementedError (translate ("AP cannot be stopped ." ));
193
+ mp_raise_NotImplementedError (translate ("Stopping AP is not supported ." ));
194
194
}
195
195
196
196
/*
You can’t perform that action at this time.
0 commit comments