Rename esp32s2 port to espressif
This is in preparation for ESP32-S3 support and potentially others. Related to #4363
This commit is contained in:
parent
9b2d8ade2f
commit
973a90f2aa
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@ -322,14 +322,14 @@ jobs:
|
|||||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||||||
build-xtensa:
|
build-espressif:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
needs: test
|
needs: test
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
board: ${{ fromJSON(needs.test.outputs.xtensa-boards) }}
|
board: ${{ fromJSON(needs.test.outputs.espressif-boards) }}
|
||||||
if: ${{ needs.test.outputs.xtensa-boards != '[]' }}
|
if: ${{ needs.test.outputs.espressif-boards != '[]' }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
@ -348,12 +348,12 @@ jobs:
|
|||||||
id: idf-cache
|
id: idf-cache
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/.idf_tools
|
path: ${{ github.workspace }}/.idf_tools
|
||||||
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20210716
|
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/espressif/esp-idf/HEAD') }}-20210716
|
||||||
- name: Clone IDF submodules
|
- name: Clone IDF submodules
|
||||||
run: |
|
run: |
|
||||||
(cd $IDF_PATH && git submodule update --init)
|
(cd $IDF_PATH && git submodule update --init)
|
||||||
env:
|
env:
|
||||||
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
||||||
- name: Install IDF tools
|
- name: Install IDF tools
|
||||||
run: |
|
run: |
|
||||||
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
||||||
@ -361,7 +361,7 @@ jobs:
|
|||||||
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
||||||
rm -rf $IDF_TOOLS_PATH/dist
|
rm -rf $IDF_TOOLS_PATH/dist
|
||||||
env:
|
env:
|
||||||
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
||||||
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
||||||
- name: Install CircuitPython deps
|
- name: Install CircuitPython deps
|
||||||
run: |
|
run: |
|
||||||
@ -369,7 +369,7 @@ jobs:
|
|||||||
pip install -r requirements-dev.txt
|
pip install -r requirements-dev.txt
|
||||||
sudo apt-get install -y gettext ninja-build
|
sudo apt-get install -y gettext ninja-build
|
||||||
env:
|
env:
|
||||||
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
||||||
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
||||||
- name: Versions
|
- name: Versions
|
||||||
run: |
|
run: |
|
||||||
@ -381,7 +381,7 @@ jobs:
|
|||||||
cmake --version
|
cmake --version
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
||||||
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
||||||
- name: mpy-cross
|
- name: mpy-cross
|
||||||
run: make -C mpy-cross -j2
|
run: make -C mpy-cross -j2
|
||||||
@ -394,7 +394,7 @@ jobs:
|
|||||||
working-directory: tools
|
working-directory: tools
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
||||||
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
||||||
BOARDS: ${{ matrix.board }}
|
BOARDS: ${{ matrix.board }}
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
|
4
.github/workflows/ports_windows.yml
vendored
4
.github/workflows/ports_windows.yml
vendored
@ -99,8 +99,8 @@ jobs:
|
|||||||
# https://github.com/espressif/esp-idf/issues/7062
|
# https://github.com/espressif/esp-idf/issues/7062
|
||||||
#
|
#
|
||||||
# - name: prepare esp
|
# - name: prepare esp
|
||||||
# run: ports/esp32s2/esp-idf/install.bat
|
# run: ports/espressif/esp-idf/install.bat
|
||||||
# shell: cmd
|
# shell: cmd
|
||||||
#
|
#
|
||||||
# - name: build esp
|
# - name: build esp
|
||||||
# run: . ports/esp32s2/esp-idf/export.sh && make -j2 -C ports/esp32s2 BOARD=adafruit_metro_esp32s2
|
# run: . ports/espressif/esp-idf/export.sh && make -j2 -C ports/espressif BOARD=adafruit_metro_esp32s2
|
||||||
|
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -151,11 +151,11 @@
|
|||||||
path = frozen/Adafruit_CircuitPython_RFM69
|
path = frozen/Adafruit_CircuitPython_RFM69
|
||||||
url = https://github.com/adafruit/Adafruit_CircuitPython_RFM69.git
|
url = https://github.com/adafruit/Adafruit_CircuitPython_RFM69.git
|
||||||
[submodule "ports/esp32s2/esp-idf"]
|
[submodule "ports/esp32s2/esp-idf"]
|
||||||
path = ports/esp32s2/esp-idf
|
path = ports/espressif/esp-idf
|
||||||
url = https://github.com/espressif/esp-idf.git
|
url = https://github.com/espressif/esp-idf.git
|
||||||
branch = release/v4.3
|
branch = release/v4.3
|
||||||
[submodule "ports/esp32s2/certificates/nina-fw"]
|
[submodule "ports/esp32s2/certificates/nina-fw"]
|
||||||
path = ports/esp32s2/certificates/nina-fw
|
path = ports/espressif/certificates/nina-fw
|
||||||
url = https://github.com/adafruit/nina-fw.git
|
url = https://github.com/adafruit/nina-fw.git
|
||||||
[submodule "frozen/Adafruit_CircuitPython_ST7789"]
|
[submodule "frozen/Adafruit_CircuitPython_ST7789"]
|
||||||
path = frozen/Adafruit_CircuitPython_ST7789
|
path = frozen/Adafruit_CircuitPython_ST7789
|
||||||
|
14
Makefile
14
Makefile
@ -40,7 +40,7 @@ ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(BASEOPTS)
|
|||||||
# the i18n builder cannot share the environment and doctrees with the others
|
# the i18n builder cannot share the environment and doctrees with the others
|
||||||
I18NSPHINXOPTS = $(BASEOPTS)
|
I18NSPHINXOPTS = $(BASEOPTS)
|
||||||
|
|
||||||
TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/cxd56 ports/esp32s2 ports/mimxrt10xx ports/nrf ports/raspberrypi ports/stm py shared-bindings shared-module supervisor
|
TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/cxd56 ports/espressif ports/mimxrt10xx ports/nrf ports/raspberrypi ports/stm py shared-bindings shared-module supervisor
|
||||||
# Paths to exclude from TRANSLATE_SOURCES
|
# Paths to exclude from TRANSLATE_SOURCES
|
||||||
# Each must be preceded by "-path"; if any wildcards, enclose in quotes.
|
# Each must be preceded by "-path"; if any wildcards, enclose in quotes.
|
||||||
# Separate by "-o" (Find's "or" operand)
|
# Separate by "-o" (Find's "or" operand)
|
||||||
@ -48,7 +48,7 @@ TRANSLATE_SOURCES_EXC = -path "ports/*/build-*" \
|
|||||||
-o -path "ports/*/build" \
|
-o -path "ports/*/build" \
|
||||||
-o -path ports/atmel-samd/asf4 \
|
-o -path ports/atmel-samd/asf4 \
|
||||||
-o -path ports/cxd56/spresense-exported-sdk \
|
-o -path ports/cxd56/spresense-exported-sdk \
|
||||||
-o -path ports/esp32s2/esp-idf \
|
-o -path ports/espressif/esp-idf \
|
||||||
-o -path ports/mimxrt10xx/sdk \
|
-o -path ports/mimxrt10xx/sdk \
|
||||||
-o -path ports/raspberrypi/sdk \
|
-o -path ports/raspberrypi/sdk \
|
||||||
-o -path ports/stm/st_driver \
|
-o -path ports/stm/st_driver \
|
||||||
@ -283,8 +283,8 @@ samd21:
|
|||||||
samd51:
|
samd51:
|
||||||
$(MAKE) -C ports/atmel-samd BOARD=feather_m4_express
|
$(MAKE) -C ports/atmel-samd BOARD=feather_m4_express
|
||||||
|
|
||||||
esp32s2:
|
espressif:
|
||||||
$(MAKE) -C ports/esp32s2 BOARD=espressif_saola_1_wroom
|
$(MAKE) -C ports/espressif BOARD=espressif_saola_1_wroom
|
||||||
|
|
||||||
litex:
|
litex:
|
||||||
$(MAKE) -C ports/litex BOARD=fomu
|
$(MAKE) -C ports/litex BOARD=fomu
|
||||||
@ -298,7 +298,7 @@ nrf:
|
|||||||
stm:
|
stm:
|
||||||
$(MAKE) -C ports/stm BOARD=feather_stm32f405_express
|
$(MAKE) -C ports/stm BOARD=feather_stm32f405_express
|
||||||
|
|
||||||
clean-one-of-each: clean-samd21 clean-samd51 clean-esp32s2 clean-litex clean-mimxrt10xx clean-nrf clean-stm
|
clean-one-of-each: clean-samd21 clean-samd51 clean-espressif clean-litex clean-mimxrt10xx clean-nrf clean-stm
|
||||||
|
|
||||||
clean-samd21:
|
clean-samd21:
|
||||||
$(MAKE) -C ports/atmel-samd BOARD=trinket_m0 clean
|
$(MAKE) -C ports/atmel-samd BOARD=trinket_m0 clean
|
||||||
@ -306,8 +306,8 @@ clean-samd21:
|
|||||||
clean-samd51:
|
clean-samd51:
|
||||||
$(MAKE) -C ports/atmel-samd BOARD=feather_m4_express clean
|
$(MAKE) -C ports/atmel-samd BOARD=feather_m4_express clean
|
||||||
|
|
||||||
clean-esp32s2:
|
clean-espressif:
|
||||||
$(MAKE) -C ports/esp32s2 BOARD=espressif_saola_1_wroom clean
|
$(MAKE) -C ports/espressif BOARD=espressif_saola_1_wroom clean
|
||||||
|
|
||||||
clean-litex:
|
clean-litex:
|
||||||
$(MAKE) -C ports/litex BOARD=fomu clean
|
$(MAKE) -C ports/litex BOARD=fomu clean
|
||||||
|
@ -213,7 +213,7 @@ Supported Support status
|
|||||||
================ ============================================================
|
================ ============================================================
|
||||||
atmel-samd ``SAMD21`` stable | ``SAMD51`` stable
|
atmel-samd ``SAMD21`` stable | ``SAMD51`` stable
|
||||||
cxd56 stable
|
cxd56 stable
|
||||||
esp32s2 stable
|
espressif stable
|
||||||
litex alpha
|
litex alpha
|
||||||
mimxrt10xx alpha
|
mimxrt10xx alpha
|
||||||
nrf stable
|
nrf stable
|
||||||
|
@ -6,7 +6,7 @@ SPDX-License-Identifier: MIT
|
|||||||
|
|
||||||
# WebUSB Serial Support
|
# WebUSB Serial Support
|
||||||
|
|
||||||
To date, this has only been tested on one port (esp32s2), on one board (espressif_kaluga_1).
|
To date, this has only been tested on one port (espressif), on one board (espressif_kaluga_1).
|
||||||
|
|
||||||
## What it does
|
## What it does
|
||||||
|
|
||||||
|
8
conf.py
8
conf.py
@ -188,10 +188,10 @@ exclude_patterns = ["**/build*",
|
|||||||
"ports/atmel-samd/tools",
|
"ports/atmel-samd/tools",
|
||||||
"ports/cxd56/mkspk",
|
"ports/cxd56/mkspk",
|
||||||
"ports/cxd56/spresense-exported-sdk",
|
"ports/cxd56/spresense-exported-sdk",
|
||||||
"ports/esp32s2/certificates",
|
"ports/espressif/certificates",
|
||||||
"ports/esp32s2/esp-idf",
|
"ports/espressif/esp-idf",
|
||||||
"ports/esp32s2/.idf_tools",
|
"ports/espressif/.idf_tools",
|
||||||
"ports/esp32s2/peripherals",
|
"ports/espressif/peripherals",
|
||||||
"ports/litex/hw",
|
"ports/litex/hw",
|
||||||
"ports/minimal",
|
"ports/minimal",
|
||||||
"ports/mimxrt10xx/peripherals",
|
"ports/mimxrt10xx/peripherals",
|
||||||
|
@ -30,7 +30,7 @@ import sys
|
|||||||
|
|
||||||
from concurrent.futures import ThreadPoolExecutor
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
|
|
||||||
SUPPORTED_PORTS = ['atmel-samd', 'cxd56', 'esp32s2', 'litex', 'mimxrt10xx', 'nrf', 'raspberrypi', 'stm']
|
SUPPORTED_PORTS = ['atmel-samd', 'cxd56', 'espressif', 'litex', 'mimxrt10xx', 'nrf', 'raspberrypi', 'stm']
|
||||||
|
|
||||||
aliases_by_board = {
|
aliases_by_board = {
|
||||||
"circuitplayground_express": [
|
"circuitplayground_express": [
|
||||||
|
@ -13,7 +13,7 @@ is limited.
|
|||||||
|
|
||||||
../ports/atmel-samd/README
|
../ports/atmel-samd/README
|
||||||
../ports/cxd56/README
|
../ports/cxd56/README
|
||||||
../ports/esp32s2/README
|
../ports/espressif/README
|
||||||
../ports/litex/README
|
../ports/litex/README
|
||||||
../ports/mimxrt10xx/README
|
../ports/mimxrt10xx/README
|
||||||
../ports/nrf/README
|
../ports/nrf/README
|
||||||
|
@ -139,7 +139,8 @@ msgstr ""
|
|||||||
msgid "%q must be a tuple of length 2"
|
msgid "%q must be a tuple of length 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/imagecapture/ParallelImageCapture.c
|
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||||
|
#: shared-module/vectorio/VectorShape.c
|
||||||
msgid "%q must be between %d and %d"
|
msgid "%q must be between %d and %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -172,7 +173,7 @@ msgstr ""
|
|||||||
msgid "%q, %q, and %q must all be the same length"
|
msgid "%q, %q, and %q must all be the same length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s error 0x%x"
|
msgid "%s error 0x%x"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -351,7 +352,7 @@ msgstr ""
|
|||||||
msgid "A hardware interrupt channel is already in use"
|
msgid "A hardware interrupt channel is already in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/espressif/common-hal/analogio/AnalogIn.c
|
||||||
msgid "ADC2 is being used by WiFi"
|
msgid "ADC2 is being used by WiFi"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -364,31 +365,31 @@ msgstr ""
|
|||||||
msgid "Address type out of range"
|
msgid "Address type out of range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
msgid "All CAN peripherals are in use"
|
msgid "All CAN peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/espressif/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/countio/Counter.c
|
#: ports/espressif/common-hal/countio/Counter.c
|
||||||
#: ports/esp32s2/common-hal/frequencyio/FrequencyIn.c
|
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||||
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||||
#: ports/esp32s2/common-hal/canio/Listener.c
|
#: ports/espressif/common-hal/canio/Listener.c
|
||||||
#: ports/stm/common-hal/canio/Listener.c
|
#: ports/stm/common-hal/canio/Listener.c
|
||||||
msgid "All RX FIFOs in use"
|
msgid "All RX FIFOs in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
|
#: ports/espressif/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
|
||||||
msgid "All SPI peripherals are in use"
|
msgid "All SPI peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/raspberrypi/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
msgid "All UART peripherals are in use"
|
msgid "All UART peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -423,10 +424,10 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/esp32s2/common-hal/frequencyio/FrequencyIn.c
|
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||||
#: ports/esp32s2/common-hal/neopixel_write/__init__.c
|
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||||
#: ports/esp32s2/common-hal/pulseio/PulseIn.c
|
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
@ -447,7 +448,7 @@ msgstr ""
|
|||||||
msgid "Already running"
|
msgid "Already running"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/Radio.c
|
#: ports/espressif/common-hal/wifi/Radio.c
|
||||||
msgid "Already scanning for wifi networks"
|
msgid "Already scanning for wifi networks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -522,7 +523,7 @@ msgid ""
|
|||||||
"disable.\n"
|
"disable.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
msgid "Baudrate not supported by peripheral"
|
msgid "Baudrate not supported by peripheral"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -620,7 +621,7 @@ msgid "Buffer too short by %d bytes"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/paralleldisplay/ParallelBus.c
|
#: ports/atmel-samd/common-hal/paralleldisplay/ParallelBus.c
|
||||||
#: ports/esp32s2/common-hal/paralleldisplay/ParallelBus.c
|
#: ports/espressif/common-hal/paralleldisplay/ParallelBus.c
|
||||||
#: ports/nrf/common-hal/paralleldisplay/ParallelBus.c
|
#: ports/nrf/common-hal/paralleldisplay/ParallelBus.c
|
||||||
#: ports/raspberrypi/common-hal/paralleldisplay/ParallelBus.c
|
#: ports/raspberrypi/common-hal/paralleldisplay/ParallelBus.c
|
||||||
#, c-format
|
#, c-format
|
||||||
@ -639,7 +640,7 @@ msgstr ""
|
|||||||
msgid "CBC blocks must be multiples of 16 bytes"
|
msgid "CBC blocks must be multiples of 16 bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "CRC or checksum was invalid"
|
msgid "CRC or checksum was invalid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -647,15 +648,15 @@ msgstr ""
|
|||||||
msgid "Call super().__init__() before accessing native object."
|
msgid "Call super().__init__() before accessing native object."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/pin/PinAlarm.c
|
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c
|
||||||
msgid "Can only alarm on RTC IO from deep sleep."
|
msgid "Can only alarm on RTC IO from deep sleep."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/pin/PinAlarm.c
|
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c
|
||||||
msgid "Can only alarm on one low pin while others alarm high from deep sleep."
|
msgid "Can only alarm on one low pin while others alarm high from deep sleep."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/pin/PinAlarm.c
|
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c
|
||||||
msgid "Can only alarm on two low pins from deep sleep."
|
msgid "Can only alarm on two low pins from deep sleep."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -697,7 +698,7 @@ msgstr ""
|
|||||||
msgid "Cannot output both channels on the same pin"
|
msgid "Cannot output both channels on the same pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/pin/PinAlarm.c
|
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c
|
||||||
msgid "Cannot pull on input-only pin."
|
msgid "Cannot pull on input-only pin."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -719,7 +720,7 @@ msgstr ""
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||||
msgid "Cannot set socket options"
|
msgid "Cannot set socket options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -727,7 +728,7 @@ msgstr ""
|
|||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "Cannot specify RTS or CTS in RS485 mode"
|
msgid "Cannot specify RTS or CTS in RS485 mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -744,7 +745,7 @@ msgstr ""
|
|||||||
msgid "Cannot vary frequency on a timer that is already in use"
|
msgid "Cannot vary frequency on a timer that is already in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/pin/PinAlarm.c
|
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c
|
||||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||||
msgid "Cannot wake on pin edge. Only level."
|
msgid "Cannot wake on pin edge. Only level."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +810,7 @@ msgid "Could not initialize SDCard"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
msgid "Could not initialize UART"
|
msgid "Could not initialize UART"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -825,7 +826,7 @@ msgstr ""
|
|||||||
msgid "Could not restart PWM"
|
msgid "Could not restart PWM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/neopixel_write/__init__.c
|
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||||
msgid "Could not retrieve clock"
|
msgid "Could not retrieve clock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -880,7 +881,7 @@ msgstr ""
|
|||||||
msgid "Data 0 pin must be byte aligned"
|
msgid "Data 0 pin must be byte aligned"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/paralleldisplay/ParallelBus.c
|
#: ports/espressif/common-hal/paralleldisplay/ParallelBus.c
|
||||||
msgid "Data 0 pin must be byte aligned."
|
msgid "Data 0 pin must be byte aligned."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,7 +932,8 @@ msgstr ""
|
|||||||
msgid "ECB only operates on 16 bytes at a time"
|
msgid "ECB only operates on 16 bytes at a time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/SPI.c ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/busio/SPI.c
|
||||||
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
msgid "ESP-IDF memory allocation failed"
|
msgid "ESP-IDF memory allocation failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1010,7 +1012,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
#: ports/espressif/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1031,7 +1033,7 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/esp32s2/common-hal/pulseio/PulseIn.c
|
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/raspberrypi/common-hal/pulseio/PulseIn.c
|
#: ports/raspberrypi/common-hal/pulseio/PulseIn.c
|
||||||
#: ports/stm/common-hal/pulseio/PulseIn.c
|
#: ports/stm/common-hal/pulseio/PulseIn.c
|
||||||
@ -1039,11 +1041,11 @@ msgstr ""
|
|||||||
msgid "Failed to allocate RX buffer of %d bytes"
|
msgid "Failed to allocate RX buffer of %d bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/espressif/common-hal/wifi/__init__.c
|
||||||
msgid "Failed to allocate Wifi memory"
|
msgid "Failed to allocate Wifi memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/ScannedNetworks.c
|
#: ports/espressif/common-hal/wifi/ScannedNetworks.c
|
||||||
msgid "Failed to allocate wifi scan memory"
|
msgid "Failed to allocate wifi scan memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1059,7 +1061,7 @@ msgstr ""
|
|||||||
msgid "Failed to connect: timeout"
|
msgid "Failed to connect: timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/espressif/common-hal/wifi/__init__.c
|
||||||
msgid "Failed to init wifi"
|
msgid "Failed to init wifi"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1085,12 +1087,12 @@ msgid "File exists"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||||
#: ports/esp32s2/common-hal/canio/Listener.c
|
#: ports/espressif/common-hal/canio/Listener.c
|
||||||
#: ports/stm/common-hal/canio/Listener.c
|
#: ports/stm/common-hal/canio/Listener.c
|
||||||
msgid "Filters too complex"
|
msgid "Filters too complex"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/dualbank/__init__.c
|
#: ports/espressif/common-hal/dualbank/__init__.c
|
||||||
msgid "Firmware image is invalid"
|
msgid "Firmware image is invalid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1112,7 +1114,7 @@ msgstr ""
|
|||||||
msgid "Function requires lock"
|
msgid "Function requires lock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Generic Failure"
|
msgid "Generic Failure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1183,7 +1185,7 @@ msgstr ""
|
|||||||
msgid "Initial set pin state conflicts with initial out pin state"
|
msgid "Initial set pin state conflicts with initial out pin state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/espressif/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1196,7 +1198,7 @@ msgstr ""
|
|||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/neopixel_write/__init__.c py/moduerrno.c
|
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moduerrno.c
|
||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,7 +1264,7 @@ msgstr ""
|
|||||||
msgid "Invalid ADC Unit value"
|
msgid "Invalid ADC Unit value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/Radio.c
|
#: ports/espressif/common-hal/wifi/Radio.c
|
||||||
msgid "Invalid AuthMode"
|
msgid "Invalid AuthMode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1278,7 +1280,7 @@ msgstr ""
|
|||||||
msgid "Invalid BSSID"
|
msgid "Invalid BSSID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogOut.c
|
#: ports/espressif/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/stm/common-hal/analogio/AnalogOut.c
|
#: ports/stm/common-hal/analogio/AnalogOut.c
|
||||||
msgid "Invalid DAC pin supplied"
|
msgid "Invalid DAC pin supplied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1289,18 +1291,18 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/esp32s2/common-hal/pwmio/PWMOut.c
|
#: ports/espressif/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/pwmio/PWMOut.c
|
#: ports/mimxrt10xx/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/espressif/common-hal/analogio/AnalogIn.c
|
||||||
msgid "Invalid Pin"
|
msgid "Invalid Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
#: py/moduerrno.c shared-module/rgbmatrix/RGBMatrix.c
|
#: py/moduerrno.c shared-module/rgbmatrix/RGBMatrix.c
|
||||||
msgid "Invalid argument"
|
msgid "Invalid argument"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1319,7 +1321,7 @@ msgid "Invalid byteorder string"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||||
#: ports/esp32s2/common-hal/frequencyio/FrequencyIn.c
|
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||||
msgid "Invalid capture period. Valid range: 1 - 500"
|
msgid "Invalid capture period. Valid range: 1 - 500"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1349,7 +1351,7 @@ msgstr ""
|
|||||||
msgid "Invalid format chunk size"
|
msgid "Invalid format chunk size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c
|
#: ports/espressif/common-hal/busio/I2C.c
|
||||||
msgid "Invalid frequency"
|
msgid "Invalid frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1368,8 +1370,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||||
#: ports/esp32s2/common-hal/alarm/touch/TouchAlarm.c
|
#: ports/espressif/common-hal/alarm/touch/TouchAlarm.c
|
||||||
#: ports/esp32s2/common-hal/touchio/TouchIn.c
|
#: ports/espressif/common-hal/touchio/TouchIn.c
|
||||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c shared-bindings/pwmio/PWMOut.c
|
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c shared-bindings/pwmio/PWMOut.c
|
||||||
#: shared-module/rgbmatrix/RGBMatrix.c
|
#: shared-module/rgbmatrix/RGBMatrix.c
|
||||||
msgid "Invalid pin"
|
msgid "Invalid pin"
|
||||||
@ -1389,8 +1391,10 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/i2cperipheral/I2CPeripheral.c
|
#: ports/atmel-samd/common-hal/i2cperipheral/I2CPeripheral.c
|
||||||
#: ports/cxd56/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/SPI.c
|
#: ports/cxd56/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/SPI.c
|
||||||
#: ports/cxd56/common-hal/busio/UART.c ports/cxd56/common-hal/sdioio/SDCard.c
|
#: ports/cxd56/common-hal/busio/UART.c ports/cxd56/common-hal/sdioio/SDCard.c
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/SPI.c
|
#: ports/espressif/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/busio/SPI.c
|
||||||
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/I2C.c
|
||||||
#: ports/raspberrypi/common-hal/busio/I2C.c
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
@ -1417,15 +1421,15 @@ msgstr ""
|
|||||||
msgid "Invalid security_mode"
|
msgid "Invalid security_mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
#: ports/espressif/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1462,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "Layer must be a Group or TileGrid subclass."
|
msgid "Layer must be a Group or TileGrid subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "MAC address was invalid"
|
msgid "MAC address was invalid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1548,7 +1552,7 @@ msgstr ""
|
|||||||
msgid "NLR jump failed. Likely memory corruption."
|
msgid "NLR jump failed. Likely memory corruption."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/nvm/ByteArray.c
|
#: ports/espressif/common-hal/nvm/ByteArray.c
|
||||||
msgid "NVS Error"
|
msgid "NVS Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1581,25 +1585,25 @@ msgstr ""
|
|||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/SPI.c ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/espressif/common-hal/busio/SPI.c
|
||||||
#: ports/stm/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
|
||||||
msgid "No MISO Pin"
|
msgid "No MISO Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/SPI.c ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/espressif/common-hal/busio/SPI.c
|
||||||
#: ports/stm/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
|
||||||
msgid "No MOSI Pin"
|
msgid "No MOSI Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
@ -1663,7 +1667,8 @@ msgstr ""
|
|||||||
msgid "No out in program"
|
msgid "No out in program"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c
|
||||||
|
#: ports/espressif/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
#: ports/raspberrypi/common-hal/busio/I2C.c
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
msgid "No pull up found on SDA or SCL; check your wiring"
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
@ -1725,11 +1730,11 @@ msgstr ""
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/espressif/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
#: ports/espressif/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Only IPv4 sockets supported"
|
msgid "Only IPv4 sockets supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1758,11 +1763,11 @@ msgid ""
|
|||||||
"%d bpp given"
|
"%d bpp given"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/touch/TouchAlarm.c
|
#: ports/espressif/common-hal/alarm/touch/TouchAlarm.c
|
||||||
msgid "Only one TouchAlarm can be set in deep sleep."
|
msgid "Only one TouchAlarm can be set in deep sleep."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/alarm/time/TimeAlarm.c
|
#: ports/espressif/common-hal/alarm/time/TimeAlarm.c
|
||||||
#: ports/nrf/common-hal/alarm/time/TimeAlarm.c
|
#: ports/nrf/common-hal/alarm/time/TimeAlarm.c
|
||||||
#: ports/raspberrypi/common-hal/alarm/time/TimeAlarm.c
|
#: ports/raspberrypi/common-hal/alarm/time/TimeAlarm.c
|
||||||
#: ports/stm/common-hal/alarm/time/TimeAlarm.c
|
#: ports/stm/common-hal/alarm/time/TimeAlarm.c
|
||||||
@ -1773,19 +1778,19 @@ msgstr ""
|
|||||||
msgid "Only one color can be transparent at a time"
|
msgid "Only one color can be transparent at a time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Operation or feature not supported"
|
msgid "Operation or feature not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Operation timed out"
|
msgid "Operation timed out"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
#: ports/espressif/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1824,7 +1829,7 @@ msgstr ""
|
|||||||
msgid "PWM slice channel A already in use"
|
msgid "PWM slice channel A already in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/audiobusio/__init__.c
|
#: ports/espressif/common-hal/audiobusio/__init__.c
|
||||||
msgid "Peripheral in use"
|
msgid "Peripheral in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1846,7 +1851,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/analogio/AnalogIn.c
|
#: ports/atmel-samd/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/cxd56/common-hal/analogio/AnalogIn.c
|
#: ports/cxd56/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/espressif/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/raspberrypi/common-hal/analogio/AnalogIn.c
|
#: ports/raspberrypi/common-hal/analogio/AnalogIn.c
|
||||||
@ -1949,12 +1954,12 @@ msgstr ""
|
|||||||
msgid "RS485 Not yet supported on this device"
|
msgid "RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/espressif/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
@ -1986,7 +1991,7 @@ msgstr ""
|
|||||||
msgid "Read-only object"
|
msgid "Read-only object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Received response was invalid"
|
msgid "Received response was invalid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2002,7 +2007,7 @@ msgstr ""
|
|||||||
msgid "Requested AES mode is unsupported"
|
msgid "Requested AES mode is unsupported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Requested resource not found"
|
msgid "Requested resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2040,7 +2045,7 @@ msgstr ""
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/SPI.c
|
#: ports/espressif/common-hal/busio/SPI.c
|
||||||
msgid "SPI configuration failed"
|
msgid "SPI configuration failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2097,7 +2102,7 @@ msgstr ""
|
|||||||
msgid "Slices not supported"
|
msgid "Slices not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
#: ports/espressif/common-hal/socketpool/SocketPool.c
|
||||||
msgid "SocketPool can only be used with wifi.radio"
|
msgid "SocketPool can only be used with wifi.radio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2294,7 +2299,7 @@ msgstr ""
|
|||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c
|
#: ports/espressif/common-hal/busio/I2C.c
|
||||||
msgid "Unable to create lock"
|
msgid "Unable to create lock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2328,7 +2333,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
#: ports/espressif/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2369,7 +2374,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2390,7 +2395,7 @@ msgstr ""
|
|||||||
msgid "Unsupported pull value."
|
msgid "Unsupported pull value."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/dualbank/__init__.c
|
#: ports/espressif/common-hal/dualbank/__init__.c
|
||||||
msgid "Update Failed"
|
msgid "Update Failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2404,7 +2409,7 @@ msgstr ""
|
|||||||
msgid "Value length > max_length"
|
msgid "Value length > max_length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
|
||||||
msgid "Version was invalid"
|
msgid "Version was invalid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2648,7 +2653,7 @@ msgid "byteorder is not a string"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c
|
||||||
msgid "bytes > 8 bits not supported"
|
msgid "bytes > 8 bits not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3262,7 +3267,7 @@ msgid "index is out of bounds"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/ulab_tools.c
|
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/ulab_tools.c
|
||||||
#: ports/esp32s2/common-hal/pulseio/PulseIn.c py/obj.c
|
#: ports/espressif/common-hal/pulseio/PulseIn.c py/obj.c
|
||||||
#: shared-bindings/bitmaptools/__init__.c
|
#: shared-bindings/bitmaptools/__init__.c
|
||||||
msgid "index out of range"
|
msgid "index out of range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3493,7 +3498,7 @@ msgstr ""
|
|||||||
msgid "long int not supported in this build"
|
msgid "long int not supported in this build"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
msgid "loopback + silent mode not supported by peripheral"
|
msgid "loopback + silent mode not supported by peripheral"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3884,7 +3889,7 @@ msgstr ""
|
|||||||
msgid "polygon can only be registered in one parent"
|
msgid "polygon can only be registered in one parent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/pulseio/PulseIn.c
|
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||||
msgid "pop from an empty PulseIn"
|
msgid "pop from an empty PulseIn"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3909,40 +3914,40 @@ msgstr ""
|
|||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/boards/adafruit_feather_esp32s2_nopsram/mpconfigboard.h
|
#: ports/espressif/boards/adafruit_feather_esp32s2_nopsram/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
|
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_funhouse/mpconfigboard.h
|
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
|
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/artisense_rd00/mpconfigboard.h
|
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/atmegazero_esp32s2/mpconfigboard.h
|
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/crumpspace_crumps2/mpconfigboard.h
|
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_hmi_devkit_1/mpconfigboard.h
|
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1.3/mpconfigboard.h
|
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/espressif/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/espressif/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/franzininho_wifi_wroom/mpconfigboard.h
|
#: ports/espressif/boards/franzininho_wifi_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/franzininho_wifi_wrover/mpconfigboard.h
|
#: ports/espressif/boards/franzininho_wifi_wrover/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/gravitech_cucumber_m/mpconfigboard.h
|
#: ports/espressif/boards/gravitech_cucumber_m/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/gravitech_cucumber_ms/mpconfigboard.h
|
#: ports/espressif/boards/gravitech_cucumber_ms/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/gravitech_cucumber_r/mpconfigboard.h
|
#: ports/espressif/boards/gravitech_cucumber_r/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/gravitech_cucumber_rs/mpconfigboard.h
|
#: ports/espressif/boards/gravitech_cucumber_rs/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
#: ports/espressif/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/lolin_s2_mini/mpconfigboard.h
|
#: ports/espressif/boards/lolin_s2_mini/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/espressif/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/morpheans_morphesp-240/mpconfigboard.h
|
#: ports/espressif/boards/morpheans_morphesp-240/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2_wroom/mpconfigboard.h
|
#: ports/espressif/boards/muselab_nanoesp32_s2_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2_wrover/mpconfigboard.h
|
#: ports/espressif/boards/muselab_nanoesp32_s2_wrover/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/odt_pixelwing_esp32_s2/mpconfigboard.h
|
#: ports/espressif/boards/odt_pixelwing_esp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/espressif/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wrover/mpconfigboard.h
|
#: ports/espressif/boards/targett_module_clip_wrover/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/unexpectedmaker_feathers2/mpconfigboard.h
|
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
|
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
|
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/unexpectedmaker_tinys2/mpconfigboard.h
|
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
|
||||||
msgid "pressing boot button at start up.\n"
|
msgid "pressing boot button at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4184,7 +4189,7 @@ msgstr ""
|
|||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/espressif/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
@ -4251,18 +4256,18 @@ msgstr ""
|
|||||||
msgid "tuple/list has wrong length"
|
msgid "tuple/list has wrong length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "twai_driver_install returned esp-idf error #%d"
|
msgid "twai_driver_install returned esp-idf error #%d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/espressif/common-hal/canio/CAN.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "twai_start returned esp-idf error #%d"
|
msgid "twai_start returned esp-idf error #%d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/espressif/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: shared-bindings/busio/UART.c shared-bindings/canio/CAN.c
|
#: shared-bindings/busio/UART.c shared-bindings/canio/CAN.c
|
||||||
msgid "tx and rx cannot both be None"
|
msgid "tx and rx cannot both be None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -4385,7 +4390,7 @@ msgstr ""
|
|||||||
msgid "value_count must be > 0"
|
msgid "value_count must be > 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/espressif/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog not initialized"
|
msgid "watchdog not initialized"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4402,7 +4407,7 @@ msgstr ""
|
|||||||
msgid "width must be greater than zero"
|
msgid "width must be greater than zero"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/Radio.c
|
#: ports/espressif/common-hal/wifi/Radio.c
|
||||||
msgid "wifi is not enabled"
|
msgid "wifi is not enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4438,7 +4443,7 @@ msgstr ""
|
|||||||
msgid "x value out of bounds"
|
msgid "x value out of bounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/audiobusio/__init__.c
|
#: ports/espressif/common-hal/audiobusio/__init__.c
|
||||||
msgid "xTaskCreate failed"
|
msgid "xTaskCreate failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user