just change the ap error

This commit is contained in:
Bill Sideris 2022-11-18 22:51:05 +02:00
parent b8cd6c093f
commit 88bd9ef6b8
No known key found for this signature in database
GPG Key ID: 1BEF1BCEBA58EA33
2 changed files with 5 additions and 5 deletions

View File

@ -397,10 +397,6 @@ msgstr ""
msgid "ADC2 is being used by WiFi"
msgstr ""
#: ports/raspberrypi/common-hal/wifi/Radio.c
msgid "AP cannot be stopped."
msgstr ""
#: shared-bindings/_bleio/Address.c shared-bindings/ipaddress/IPv4Address.c
#, c-format
msgid "Address must be %d bytes long"
@ -1979,6 +1975,10 @@ msgstr ""
msgid "Stereo right must be on PWM channel B"
msgstr ""
#: ports/raspberrypi/common-hal/wifi/Radio.c
msgid "Stopping AP is not supported."
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
msgid "Supply at least one UART pin"
msgstr ""

View File

@ -190,7 +190,7 @@ void common_hal_wifi_radio_stop_ap(wifi_radio_obj_t *self) {
}
if (cyw43_tcpip_link_status(&cyw43_state, CYW43_ITF_AP) != CYW43_LINK_DOWN) {
mp_raise_NotImplementedError(translate("AP cannot be stopped."));
mp_raise_NotImplementedError(translate("Stopping AP is not supported."));
}
/*