just change the ap error
This commit is contained in:
parent
b8cd6c093f
commit
88bd9ef6b8
|
@ -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 ""
|
||||
|
|
|
@ -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."));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue