Skip to content

Commit 88bd9ef

Browse files
committed
just change the ap error
1 parent b8cd6c0 commit 88bd9ef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

locale/circuitpython.pot

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,6 @@ msgstr ""
397397
msgid "ADC2 is being used by WiFi"
398398
msgstr ""
399399

400-
#: ports/raspberrypi/common-hal/wifi/Radio.c
401-
msgid "AP cannot be stopped."
402-
msgstr ""
403-
404400
#: shared-bindings/_bleio/Address.c shared-bindings/ipaddress/IPv4Address.c
405401
#, c-format
406402
msgid "Address must be %d bytes long"
@@ -1979,6 +1975,10 @@ msgstr ""
19791975
msgid "Stereo right must be on PWM channel B"
19801976
msgstr ""
19811977

1978+
#: ports/raspberrypi/common-hal/wifi/Radio.c
1979+
msgid "Stopping AP is not supported."
1980+
msgstr ""
1981+
19821982
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
19831983
msgid "Supply at least one UART pin"
19841984
msgstr ""

ports/raspberrypi/common-hal/wifi/Radio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ void common_hal_wifi_radio_stop_ap(wifi_radio_obj_t *self) {
190190
}
191191

192192
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."));
194194
}
195195

196196
/*

0 commit comments

Comments
 (0)