merge from main
This commit is contained in:
commit
5bb3c321e9
|
@ -14,7 +14,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Dump GitHub context
|
- name: Dump GitHub context
|
||||||
env:
|
env:
|
||||||
|
@ -119,6 +119,7 @@ jobs:
|
||||||
zip -9r circuitpython-stubs.zip circuitpython-stubs
|
zip -9r circuitpython-stubs.zip circuitpython-stubs
|
||||||
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp circuitpython-stubs.zip s3://adafruit-circuit-python/bin/stubs/circuitpython-stubs-${{ env.CP_VERSION }}.zip --no-progress --region us-east-1
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp circuitpython-stubs.zip s3://adafruit-circuit-python/bin/stubs/circuitpython-stubs-${{ env.CP_VERSION }}.zip --no-progress --region us-east-1
|
||||||
env:
|
env:
|
||||||
|
AWS_PAGER: ''
|
||||||
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.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||||||
|
@ -159,13 +160,14 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross-macos-catalina-${{ env.CP_VERSION }} --no-progress --region us-east-1
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross-macos-catalina-${{ env.CP_VERSION }} --no-progress --region us-east-1
|
||||||
env:
|
env:
|
||||||
|
AWS_PAGER: ''
|
||||||
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.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||||||
|
|
||||||
|
|
||||||
build-arm:
|
build-arm:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
needs: test
|
needs: test
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -363,12 +365,13 @@ jobs:
|
||||||
- name: Upload to S3
|
- name: Upload to S3
|
||||||
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
||||||
env:
|
env:
|
||||||
|
AWS_PAGER: ''
|
||||||
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.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||||||
|
|
||||||
build-riscv:
|
build-riscv:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-20.04
|
||||||
needs: test
|
needs: test
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -411,11 +414,12 @@ jobs:
|
||||||
- name: Upload to S3
|
- name: Upload to S3
|
||||||
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
||||||
env:
|
env:
|
||||||
|
AWS_PAGER: ''
|
||||||
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.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||||||
build-xtensa:
|
build-xtensa:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
needs: test
|
needs: test
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -505,6 +509,7 @@ jobs:
|
||||||
- name: Upload to S3
|
- name: Upload to S3
|
||||||
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
||||||
env:
|
env:
|
||||||
|
AWS_PAGER: ''
|
||||||
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.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||||||
|
|
|
@ -10,7 +10,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
website:
|
website:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Dump GitHub context
|
- name: Dump GitHub context
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -11,7 +11,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pre-commit:
|
pre-commit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-python@v1
|
- uses: actions/setup-python@v1
|
||||||
|
|
|
@ -152,4 +152,4 @@
|
||||||
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/esp32s2/esp-idf
|
||||||
url = https://github.com/espressif/esp-idf.git
|
url = https://github.com/jepler/esp-idf.git
|
||||||
|
|
15
locale/ID.po
15
locale/ID.po
|
@ -5,7 +5,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-10-10 23:51+0000\n"
|
"PO-Revision-Date: 2020-10-10 23:51+0000\n"
|
||||||
"Last-Translator: oon arfiandwi <oon.arfiandwi@gmail.com>\n"
|
"Last-Translator: oon arfiandwi <oon.arfiandwi@gmail.com>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -300,7 +300,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Semua perangkat I2C sedang digunakan"
|
msgstr "Semua perangkat I2C sedang digunakan"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1018,6 +1019,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Ukuran penyangga salah"
|
msgstr "Ukuran penyangga salah"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3254,6 +3259,7 @@ msgstr ""
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3469,6 +3475,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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3653,6 +3660,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-19 00:22-0500\n"
|
"POT-Creation-Date: 2020-11-19 00:28-0500\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -1009,6 +1009,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1958,7 +1962,7 @@ msgstr ""
|
||||||
msgid "WARNING: Your code filename has two extensions\n"
|
msgid "WARNING: Your code filename has two extensions\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3438,6 +3442,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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3629,6 +3634,10 @@ msgstr ""
|
||||||
msgid "wakeup conflict"
|
msgid "wakeup conflict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
15
locale/cs.po
15
locale/cs.po
|
@ -5,7 +5,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-05-24 03:22+0000\n"
|
"PO-Revision-Date: 2020-05-24 03:22+0000\n"
|
||||||
"Last-Translator: dronecz <mzuzelka@gmail.com>\n"
|
"Last-Translator: dronecz <mzuzelka@gmail.com>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -300,7 +300,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1001,6 +1002,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3210,6 +3215,7 @@ msgstr ""
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3425,6 +3431,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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3608,6 +3615,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -5,7 +5,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-06-16 18:24+0000\n"
|
"PO-Revision-Date: 2020-06-16 18:24+0000\n"
|
||||||
"Last-Translator: Andreas Buchen <andreas.buchen@gmail.com>\n"
|
"Last-Translator: Andreas Buchen <andreas.buchen@gmail.com>\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
|
@ -299,7 +299,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Alle I2C-Peripheriegeräte sind in Benutzung"
|
msgstr "Alle I2C-Peripheriegeräte sind in Benutzung"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1018,6 +1019,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Inkorrekte Puffergröße"
|
msgstr "Inkorrekte Puffergröße"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3293,6 +3298,7 @@ msgstr "pow() drittes Argument darf nicht 0 sein"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow () mit 3 Argumenten erfordert Integer"
|
msgstr "pow () mit 3 Argumenten erfordert Integer"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3511,6 +3517,7 @@ msgstr "threshold muss im Intervall 0-65536 liegen"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() nimmt eine 9-Sequenz an"
|
msgstr "time.struct_time() nimmt eine 9-Sequenz an"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "Das Zeitlimit hat den maximal zulässigen Wert überschritten"
|
msgstr "Das Zeitlimit hat den maximal zulässigen Wert überschritten"
|
||||||
|
@ -3698,6 +3705,10 @@ msgstr "value_count muss größer als 0 sein"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "Vektoren müssen die selbe Länge haben"
|
msgstr "Vektoren müssen die selbe Länge haben"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
15
locale/el.po
15
locale/el.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -295,7 +295,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -996,6 +997,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3205,6 +3210,7 @@ msgstr ""
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3420,6 +3426,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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3603,6 +3610,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
25
locale/es.po
25
locale/es.po
|
@ -7,16 +7,16 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-11-01 16:26+0000\n"
|
"PO-Revision-Date: 2020-11-15 16:28+0000\n"
|
||||||
"Last-Translator: Alvaro Figueroa <alvaro@greencore.co.cr>\n"
|
"Last-Translator: RubenD <rubendariopm14@gmail.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.3.2-dev\n"
|
"X-Generator: Weblate 4.4-dev\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -303,9 +303,10 @@ msgstr "Todos los periféricos CAN están en uso"
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Todos los periféricos I2C están siendo usados"
|
msgstr "Todos los periféricos I2C están siendo usados"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr "Todas las unidades PCNT en uso"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||||
#: ports/esp32s2/common-hal/canio/Listener.c
|
#: ports/esp32s2/common-hal/canio/Listener.c
|
||||||
|
@ -445,7 +446,7 @@ msgstr "Bit clock y word select deben compartir una unidad de reloj"
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
||||||
msgstr ""
|
msgstr "Bit depth tiene que ser de 1 a 6 inclusivo, no %d"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Bit depth must be multiple of 8."
|
msgid "Bit depth must be multiple of 8."
|
||||||
|
@ -1019,6 +1020,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Tamaño incorrecto del buffer"
|
msgstr "Tamaño incorrecto del buffer"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "La entrada está durando mucho tiempo"
|
msgstr "La entrada está durando mucho tiempo"
|
||||||
|
@ -3281,6 +3286,7 @@ msgstr "el 3er argumento de pow() no puede ser 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() con 3 argumentos requiere enteros"
|
msgstr "pow() con 3 argumentos requiere enteros"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3498,6 +3504,7 @@ msgstr "limite debe ser en el rango 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() toma un sequencio 9"
|
msgstr "time.struct_time() toma un sequencio 9"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3682,6 +3689,10 @@ msgstr "value_count debe ser > 0"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "los vectores deben tener el mismo tamaño"
|
msgstr "los vectores deben tener el mismo tamaño"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "el tiempo de espera del perro guardián debe ser mayor a 0"
|
msgstr "el tiempo de espera del perro guardián debe ser mayor a 0"
|
||||||
|
|
|
@ -5,7 +5,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2018-12-20 22:15-0800\n"
|
"PO-Revision-Date: 2018-12-20 22:15-0800\n"
|
||||||
"Last-Translator: Timothy <me@timothygarcia.ca>\n"
|
"Last-Translator: Timothy <me@timothygarcia.ca>\n"
|
||||||
"Language-Team: fil\n"
|
"Language-Team: fil\n"
|
||||||
|
@ -297,7 +297,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Lahat ng I2C peripherals ginagamit"
|
msgstr "Lahat ng I2C peripherals ginagamit"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1011,6 +1012,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3256,6 +3261,7 @@ msgstr "pow() 3rd argument ay hindi maaring 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() na may 3 argumento kailangan ng integers"
|
msgstr "pow() na may 3 argumento kailangan ng integers"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3474,6 +3480,7 @@ msgstr "ang threshold ay dapat sa range 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() kumukuha ng 9-sequence"
|
msgstr "time.struct_time() kumukuha ng 9-sequence"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3658,6 +3665,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
39
locale/fr.po
39
locale/fr.po
|
@ -7,15 +7,15 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 0.1\n"
|
"Project-Id-Version: 0.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-10-22 20:48+0000\n"
|
"PO-Revision-Date: 2020-11-15 16:28+0000\n"
|
||||||
"Last-Translator: Antonin ENFRUN <antonin.e@me.com>\n"
|
"Last-Translator: Antonin ENFRUN <antonin.e@me.com>\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.3.1\n"
|
"X-Generator: Weblate 4.4-dev\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -298,15 +298,16 @@ msgstr "Type d'adresse hors plage"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/esp32s2/common-hal/canio/CAN.c
|
||||||
msgid "All CAN peripherals are in use"
|
msgid "All CAN peripherals are in use"
|
||||||
msgstr ""
|
msgstr "Tous les périphériques CAN sont utilisés"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/esp32s2/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 "Tous les périphériques I2C sont utilisés"
|
msgstr "Tous les périphériques I2C sont utilisés"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr "Toutes les unités PCNT sont utilisées"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||||
#: ports/esp32s2/common-hal/canio/Listener.c
|
#: ports/esp32s2/common-hal/canio/Listener.c
|
||||||
|
@ -431,7 +432,7 @@ msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/esp32s2/common-hal/canio/CAN.c
|
||||||
msgid "Baudrate not supported by peripheral"
|
msgid "Baudrate not supported by peripheral"
|
||||||
msgstr ""
|
msgstr "Baudrate non prise en charge par le périphérique"
|
||||||
|
|
||||||
#: shared-module/displayio/Display.c
|
#: shared-module/displayio/Display.c
|
||||||
#: shared-module/framebufferio/FramebufferDisplay.c
|
#: shared-module/framebufferio/FramebufferDisplay.c
|
||||||
|
@ -445,7 +446,7 @@ msgstr "'bit clock' et 'word select' doivent partager une horloge"
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
||||||
msgstr ""
|
msgstr "Bit depth doit être compris entre 1 et 6 inclus, et non %d"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Bit depth must be multiple of 8."
|
msgid "Bit depth must be multiple of 8."
|
||||||
|
@ -1024,6 +1025,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Taille de tampon incorrecte"
|
msgstr "Taille de tampon incorrecte"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "L'entrée prend trop de temps"
|
msgstr "L'entrée prend trop de temps"
|
||||||
|
@ -2953,7 +2958,7 @@ msgstr "entiers longs non supportés dans cette build"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/esp32s2/common-hal/canio/CAN.c
|
||||||
msgid "loopback + silent mode not supported by peripheral"
|
msgid "loopback + silent mode not supported by peripheral"
|
||||||
msgstr ""
|
msgstr "loopback + silent mode non pris en charge par le périphérique"
|
||||||
|
|
||||||
#: py/parse.c
|
#: py/parse.c
|
||||||
msgid "malformed f-string"
|
msgid "malformed f-string"
|
||||||
|
@ -2991,11 +2996,11 @@ msgstr "profondeur maximale de récursivité dépassée"
|
||||||
|
|
||||||
#: extmod/ulab/code/approx/approx.c
|
#: extmod/ulab/code/approx/approx.c
|
||||||
msgid "maxiter must be > 0"
|
msgid "maxiter must be > 0"
|
||||||
msgstr ""
|
msgstr "maxiter doit être > 0"
|
||||||
|
|
||||||
#: extmod/ulab/code/approx/approx.c
|
#: extmod/ulab/code/approx/approx.c
|
||||||
msgid "maxiter should be > 0"
|
msgid "maxiter should be > 0"
|
||||||
msgstr ""
|
msgstr "maxiter devrait être > 0"
|
||||||
|
|
||||||
#: py/runtime.c
|
#: py/runtime.c
|
||||||
#, c-format
|
#, c-format
|
||||||
|
@ -3305,6 +3310,7 @@ msgstr "le 3e argument de pow() ne peut être 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() avec 3 arguments nécessite des entiers"
|
msgstr "pow() avec 3 arguments nécessite des entiers"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3440,7 +3446,7 @@ msgstr "l'argument de «sort» doit être un ndarray"
|
||||||
|
|
||||||
#: extmod/ulab/code/numerical/numerical.c
|
#: extmod/ulab/code/numerical/numerical.c
|
||||||
msgid "sorted axis can't be longer than 65535"
|
msgid "sorted axis can't be longer than 65535"
|
||||||
msgstr ""
|
msgstr "sorted axis ne peut pas dépasser 65535"
|
||||||
|
|
||||||
#: extmod/ulab/code/filter/filter.c
|
#: extmod/ulab/code/filter/filter.c
|
||||||
msgid "sos array must be of shape (n_section, 6)"
|
msgid "sos array must be of shape (n_section, 6)"
|
||||||
|
@ -3523,6 +3529,7 @@ msgstr "le seuil doit être dans la gamme 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() prend une séquence de longueur 9"
|
msgstr "time.struct_time() prend une séquence de longueur 9"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "le délai d'expiration a dépassé la valeur maximale prise en charge"
|
msgstr "le délai d'expiration a dépassé la valeur maximale prise en charge"
|
||||||
|
@ -3575,12 +3582,12 @@ msgstr "tuple/liste a une mauvaise longueur"
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/esp32s2/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 "twai_driver_install a renvoyé l'erreur esp-idf #%d"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/esp32s2/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 "twai_start a renvoyé l'erreur esp-idf #%d"
|
||||||
|
|
||||||
#: 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/esp32s2/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
|
@ -3706,6 +3713,10 @@ msgstr "'value_count' doit être > 0"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "les vecteurs doivent avoir la même longueur"
|
msgstr "les vecteurs doivent avoir la même longueur"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdog timeout doit être supérieur à 0"
|
msgstr "watchdog timeout doit être supérieur à 0"
|
||||||
|
|
15
locale/hi.po
15
locale/hi.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -295,7 +295,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -996,6 +997,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3205,6 +3210,7 @@ msgstr ""
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3420,6 +3426,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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3603,6 +3610,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2018-10-02 16:27+0200\n"
|
"PO-Revision-Date: 2018-10-02 16:27+0200\n"
|
||||||
"Last-Translator: Enrico Paganin <enrico.paganin@mail.com>\n"
|
"Last-Translator: Enrico Paganin <enrico.paganin@mail.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
|
@ -296,7 +296,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Tutte le periferiche I2C sono in uso"
|
msgstr "Tutte le periferiche I2C sono in uso"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1011,6 +1012,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3263,6 +3268,7 @@ msgstr "il terzo argomento di pow() non può essere 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() con 3 argomenti richiede interi"
|
msgstr "pow() con 3 argomenti richiede interi"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3481,6 +3487,7 @@ msgstr "la soglia deve essere nell'intervallo 0-65536"
|
||||||
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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3665,6 +3672,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
15
locale/ja.po
15
locale/ja.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-11-12 22:51+0000\n"
|
"PO-Revision-Date: 2020-11-12 22:51+0000\n"
|
||||||
"Last-Translator: sporeball <sporeballdev@gmail.com>\n"
|
"Last-Translator: sporeball <sporeballdev@gmail.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -302,7 +302,8 @@ msgstr "全てのCAN周辺機器が使用中"
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "全てのI2C周辺機器が使用中"
|
msgstr "全てのI2C周辺機器が使用中"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1011,6 +1012,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "バッファサイズが正しくありません"
|
msgstr "バッファサイズが正しくありません"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3237,6 +3242,7 @@ msgstr "pow()の3つ目の引数は0にできません"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow()の第3引数には整数が必要"
|
msgstr "pow()の第3引数には整数が必要"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3453,6 +3459,7 @@ msgstr "threshouldは0から65536まで"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time()は9要素のシーケンスを受け取ります"
|
msgstr "time.struct_time()は9要素のシーケンスを受け取ります"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "タイムアウト長は対応する最大値を超えています"
|
msgstr "タイムアウト長は対応する最大値を超えています"
|
||||||
|
@ -3636,6 +3643,10 @@ msgstr "value_countは0より大きくなければなりません"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdogのtimeoutは0以上でなければなりません"
|
msgstr "watchdogのtimeoutは0以上でなければなりません"
|
||||||
|
|
15
locale/ko.po
15
locale/ko.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-10-05 12:12+0000\n"
|
"PO-Revision-Date: 2020-10-05 12:12+0000\n"
|
||||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -298,7 +298,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "사용중인 모든 I2C주변 기기"
|
msgstr "사용중인 모든 I2C주변 기기"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1001,6 +1002,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3211,6 +3216,7 @@ msgstr ""
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3426,6 +3432,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/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3609,6 +3616,10 @@ msgstr ""
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
15
locale/nl.po
15
locale/nl.po
|
@ -5,7 +5,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-10-27 16:47+0000\n"
|
"PO-Revision-Date: 2020-10-27 16:47+0000\n"
|
||||||
"Last-Translator: Jelle Jager <jell@jjc.id.au>\n"
|
"Last-Translator: Jelle Jager <jell@jjc.id.au>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -300,7 +300,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Alle I2C peripherals zijn in gebruik"
|
msgstr "Alle I2C peripherals zijn in gebruik"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1013,6 +1014,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Incorrecte buffer grootte"
|
msgstr "Incorrecte buffer grootte"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "Invoer duurt te lang"
|
msgstr "Invoer duurt te lang"
|
||||||
|
@ -3270,6 +3275,7 @@ msgstr "derde argument van pow() mag geen 0 zijn"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() met 3 argumenten vereist integers"
|
msgstr "pow() met 3 argumenten vereist integers"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3487,6 +3493,7 @@ msgstr "drempelwaarde moet in het bereik 0-65536 liggen"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() accepteert een 9-rij"
|
msgstr "time.struct_time() accepteert een 9-rij"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "time-outduur is groter dan de ondersteunde maximale waarde"
|
msgstr "time-outduur is groter dan de ondersteunde maximale waarde"
|
||||||
|
@ -3670,6 +3677,10 @@ msgstr "value_count moet groter dan 0 zijn"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "vectoren moeten van gelijke lengte zijn"
|
msgstr "vectoren moeten van gelijke lengte zijn"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdog time-out moet groter zijn dan 0"
|
msgstr "watchdog time-out moet groter zijn dan 0"
|
||||||
|
|
15
locale/pl.po
15
locale/pl.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-11-11 19:13+0000\n"
|
"PO-Revision-Date: 2020-11-11 19:13+0000\n"
|
||||||
"Last-Translator: Maciej Stankiewicz <tawezik@gmail.com>\n"
|
"Last-Translator: Maciej Stankiewicz <tawezik@gmail.com>\n"
|
||||||
"Language-Team: pl\n"
|
"Language-Team: pl\n"
|
||||||
|
@ -302,7 +302,8 @@ msgstr ""
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Wszystkie peryferia I2C w użyciu"
|
msgstr "Wszystkie peryferia I2C w użyciu"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1011,6 +1012,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Niewłaściwa wielkość bufora"
|
msgstr "Niewłaściwa wielkość bufora"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3229,6 +3234,7 @@ msgstr "trzeci argument pow() nie może być 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "trzyargumentowe pow() wymaga liczb całkowitych"
|
msgstr "trzyargumentowe pow() wymaga liczb całkowitych"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3445,6 +3451,7 @@ msgstr "threshold musi być w zakresie 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() wymaga 9-elementowej sekwencji"
|
msgstr "time.struct_time() wymaga 9-elementowej sekwencji"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3628,6 +3635,10 @@ msgstr "value_count musi być > 0"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "wektory muszą mieć identyczną długość"
|
msgstr "wektory muszą mieć identyczną długość"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -5,8 +5,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-11-08 10:26+0000\n"
|
"PO-Revision-Date: 2020-11-18 00:28+0000\n"
|
||||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
|
@ -14,7 +14,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.3.2\n"
|
"X-Generator: Weblate 4.4-dev\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -304,7 +304,8 @@ msgstr "Todos os periféricos CAN estão em uso"
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Todos os periféricos I2C estão em uso"
|
msgstr "Todos os periféricos I2C estão em uso"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr "Todas as unidades PCNT estão em uso"
|
msgstr "Todas as unidades PCNT estão em uso"
|
||||||
|
|
||||||
|
@ -446,7 +447,7 @@ msgstr ""
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
||||||
msgstr ""
|
msgstr "A profundidade dos bits deve ser de 1 até 6 inclusive, porém não %d"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Bit depth must be multiple of 8."
|
msgid "Bit depth must be multiple of 8."
|
||||||
|
@ -1022,6 +1023,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "O tamanho do buffer está incorreto"
|
msgstr "O tamanho do buffer está incorreto"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr "A inicialização falhou devido à falta de memória"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "A entrada está demorando demais"
|
msgstr "A entrada está demorando demais"
|
||||||
|
@ -3296,6 +3301,7 @@ msgstr "O terceiro argumento pow() não pode ser 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "o pow() com 3 argumentos requer números inteiros"
|
msgstr "o pow() com 3 argumentos requer números inteiros"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3513,6 +3519,7 @@ msgstr "Limite deve estar no alcance de 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() leva uma sequência com 9"
|
msgstr "time.struct_time() leva uma sequência com 9"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "a duração do tempo limite excedeu o valor máximo suportado"
|
msgstr "a duração do tempo limite excedeu o valor máximo suportado"
|
||||||
|
@ -3696,6 +3703,10 @@ msgstr "o value_count deve ser > 0"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "os vetores devem ter os mesmos comprimentos"
|
msgstr "os vetores devem ter os mesmos comprimentos"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr "o watchdog não foi inicializado"
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "o tempo limite do watchdog deve ser maior que 0"
|
msgstr "o tempo limite do watchdog deve ser maior que 0"
|
||||||
|
|
23
locale/sv.po
23
locale/sv.po
|
@ -5,8 +5,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-11-05 20:26+0000\n"
|
"PO-Revision-Date: 2020-11-15 16:28+0000\n"
|
||||||
"Last-Translator: Jonny Bergdahl <jonny@bergdahl.it>\n"
|
"Last-Translator: Jonny Bergdahl <jonny@bergdahl.it>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
|
@ -14,7 +14,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.3.2\n"
|
"X-Generator: Weblate 4.4-dev\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -300,9 +300,10 @@ msgstr "All I2C-kringutrustning används"
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "All I2C-kringutrustning används"
|
msgstr "All I2C-kringutrustning används"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr ""
|
msgstr "Alla PCNT-enheter används"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||||
#: ports/esp32s2/common-hal/canio/Listener.c
|
#: ports/esp32s2/common-hal/canio/Listener.c
|
||||||
|
@ -438,7 +439,7 @@ msgstr "Bitklocka och ordval måste dela en klockenhet"
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
||||||
msgstr ""
|
msgstr "Bitdjup måste vara inom 1 till 6, inte %d"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Bit depth must be multiple of 8."
|
msgid "Bit depth must be multiple of 8."
|
||||||
|
@ -1011,6 +1012,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Fel buffertstorlek"
|
msgstr "Fel buffertstorlek"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "Indata tar för lång tid"
|
msgstr "Indata tar för lång tid"
|
||||||
|
@ -3263,6 +3268,7 @@ msgstr "pow() 3: e argument kan inte vara 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() med 3 argument kräver heltal"
|
msgstr "pow() med 3 argument kräver heltal"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3480,6 +3486,7 @@ msgstr "tröskelvärdet måste ligga i intervallet 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() kräver en 9-sekvens"
|
msgstr "time.struct_time() kräver en 9-sekvens"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "timeout-längd överskred det maximala värde som stöds"
|
msgstr "timeout-längd överskred det maximala värde som stöds"
|
||||||
|
@ -3663,6 +3670,10 @@ msgstr "value_count måste vara > 0"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "vektorer måste ha samma längd"
|
msgstr "vektorer måste ha samma längd"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdog timeout måste vara större än 0"
|
msgstr "watchdog timeout måste vara större än 0"
|
||||||
|
|
|
@ -6,8 +6,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: circuitpython-cn\n"
|
"Project-Id-Version: circuitpython-cn\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-11-04 21:18+0530\n"
|
"POT-Creation-Date: 2020-11-10 15:30+0530\n"
|
||||||
"PO-Revision-Date: 2020-11-11 19:13+0000\n"
|
"PO-Revision-Date: 2020-11-15 16:28+0000\n"
|
||||||
"Last-Translator: hexthat <hexthat@gmail.com>\n"
|
"Last-Translator: hexthat <hexthat@gmail.com>\n"
|
||||||
"Language-Team: Chinese Hanyu Pinyin\n"
|
"Language-Team: Chinese Hanyu Pinyin\n"
|
||||||
"Language: zh_Latn_pinyin\n"
|
"Language: zh_Latn_pinyin\n"
|
||||||
|
@ -302,7 +302,8 @@ msgstr "suǒ yǒu CAN wài shè dōu zài shǐ yòng zhōng"
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
msgstr "Suǒyǒu I2C wàiwéi qì zhèngzài shǐyòng"
|
msgstr "Suǒyǒu I2C wàiwéi qì zhèngzài shǐyòng"
|
||||||
|
|
||||||
#: ports/esp32s2/peripherals/pcnt_handler.c
|
#: ports/esp32s2/common-hal/countio/Counter.c
|
||||||
|
#: ports/esp32s2/common-hal/rotaryio/IncrementalEncoder.c
|
||||||
msgid "All PCNT units in use"
|
msgid "All PCNT units in use"
|
||||||
msgstr "suǒ yǒu zhèng zài shǐ yòng zhōng de PCNT dān yuán"
|
msgstr "suǒ yǒu zhèng zài shǐ yòng zhōng de PCNT dān yuán"
|
||||||
|
|
||||||
|
@ -440,7 +441,7 @@ msgstr "Bǐtè shízhōng hé dānzì xuǎnzé bìxū gòngxiǎng shízhōng dā
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
msgid "Bit depth must be from 1 to 6 inclusive, not %d"
|
||||||
msgstr ""
|
msgstr "wèi shēn dù bì xū bāo hán 1 dào 6, ér bù shì %d"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Bit depth must be multiple of 8."
|
msgid "Bit depth must be multiple of 8."
|
||||||
|
@ -1009,6 +1010,10 @@ msgstr ""
|
||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Huǎnchōng qū dàxiǎo bù zhèngquè"
|
msgstr "Huǎnchōng qū dàxiǎo bù zhèngquè"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "Initialization failed due to lack of memory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "Shūrù shíjiānguò zhǎng"
|
msgstr "Shūrù shíjiānguò zhǎng"
|
||||||
|
@ -3252,6 +3257,7 @@ msgstr "pow() 3 cān shǔ bùnéng wéi 0"
|
||||||
msgid "pow() with 3 arguments requires integers"
|
msgid "pow() with 3 arguments requires integers"
|
||||||
msgstr "pow() yǒu 3 cānshù xūyào zhěngshù"
|
msgstr "pow() yǒu 3 cānshù xūyào zhěngshù"
|
||||||
|
|
||||||
|
#: ports/esp32s2/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
#: ports/esp32s2/boards/adafruit_metro_esp32s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
#: ports/esp32s2/boards/electroniccats_bastwifi/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
|
@ -3469,6 +3475,7 @@ msgstr "yùzhí bìxū zài fànwéi 0-65536"
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
msgstr "time.struct_time() xūyào 9 xùliè"
|
msgstr "time.struct_time() xūyào 9 xùliè"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "chāoshí shíjiān chāoguò zuìdà zhīchí zhí"
|
msgstr "chāoshí shíjiān chāoguò zuìdà zhīchí zhí"
|
||||||
|
@ -3652,6 +3659,10 @@ msgstr "zhí jìshù bìxū wèi > 0"
|
||||||
msgid "vectors must have same lengths"
|
msgid "vectors must have same lengths"
|
||||||
msgstr "xiàngliàng bìxū jùyǒu xiāngtóng de chángdù"
|
msgstr "xiàngliàng bìxū jùyǒu xiāngtóng de chángdù"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "watchdog not initialized"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/watchdog/WatchDogTimer.c
|
#: shared-bindings/watchdog/WatchDogTimer.c
|
||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "kān mén gǒu chāoshí bìxū dàyú 0"
|
msgstr "kān mén gǒu chāoshí bìxū dàyú 0"
|
||||||
|
|
|
@ -91,6 +91,17 @@ const mcu_processor_obj_t common_hal_mcu_processor_obj = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if CIRCUITPY_WATCHDOG
|
||||||
|
// The singleton watchdog.WatchDogTimer object.
|
||||||
|
watchdog_watchdogtimer_obj_t common_hal_mcu_watchdogtimer_obj = {
|
||||||
|
.base = {
|
||||||
|
.type = &watchdog_watchdogtimer_type,
|
||||||
|
},
|
||||||
|
.timeout = 0.0f,
|
||||||
|
.mode = WATCHDOGMODE_NONE,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
// This maps MCU pin names to pin objects.
|
// This maps MCU pin names to pin objects.
|
||||||
STATIC const mp_rom_map_elem_t mcu_pin_global_dict_table[] = {
|
STATIC const mp_rom_map_elem_t mcu_pin_global_dict_table[] = {
|
||||||
{ MP_ROM_QSTR(MP_QSTR_GPIO0), MP_ROM_PTR(&pin_GPIO0) },
|
{ MP_ROM_QSTR(MP_QSTR_GPIO0), MP_ROM_PTR(&pin_GPIO0) },
|
||||||
|
|
|
@ -77,7 +77,9 @@ void pulsein_reset(void) {
|
||||||
for (size_t i = 0; i < RMT_CHANNEL_MAX; i++) {
|
for (size_t i = 0; i < RMT_CHANNEL_MAX; i++) {
|
||||||
handles[i] = NULL;
|
handles[i] = NULL;
|
||||||
}
|
}
|
||||||
supervisor_disable_tick();
|
if (refcount != 0) {
|
||||||
|
supervisor_disable_tick();
|
||||||
|
}
|
||||||
refcount = 0;
|
refcount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,8 +124,10 @@ void common_hal_pulseio_pulsein_construct(pulseio_pulsein_obj_t* self, const mcu
|
||||||
|
|
||||||
// start RMT RX, and enable ticks so the core doesn't turn off.
|
// start RMT RX, and enable ticks so the core doesn't turn off.
|
||||||
rmt_rx_start(channel, true);
|
rmt_rx_start(channel, true);
|
||||||
supervisor_enable_tick();
|
|
||||||
refcount++;
|
refcount++;
|
||||||
|
if (refcount == 1) {
|
||||||
|
supervisor_enable_tick();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool common_hal_pulseio_pulsein_deinited(pulseio_pulsein_obj_t* self) {
|
bool common_hal_pulseio_pulsein_deinited(pulseio_pulsein_obj_t* self) {
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
// No watchdog module functions.
|
|
@ -0,0 +1,93 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 microDev
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "py/runtime.h"
|
||||||
|
#include "common-hal/watchdog/WatchDogTimer.h"
|
||||||
|
|
||||||
|
#include "shared-bindings/watchdog/__init__.h"
|
||||||
|
#include "shared-bindings/microcontroller/__init__.h"
|
||||||
|
|
||||||
|
#include "esp_task_wdt.h"
|
||||||
|
|
||||||
|
void esp_task_wdt_isr_user_handler(void) {
|
||||||
|
mp_obj_exception_clear_traceback(MP_OBJ_FROM_PTR(&mp_watchdog_timeout_exception));
|
||||||
|
MP_STATE_VM(mp_pending_exception) = &mp_watchdog_timeout_exception;
|
||||||
|
#if MICROPY_ENABLE_SCHEDULER
|
||||||
|
if (MP_STATE_VM(sched_state) == MP_SCHED_IDLE) {
|
||||||
|
MP_STATE_VM(sched_state) = MP_SCHED_PENDING;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void common_hal_watchdog_feed(watchdog_watchdogtimer_obj_t *self) {
|
||||||
|
if (esp_task_wdt_reset() != ESP_OK) {
|
||||||
|
mp_raise_RuntimeError(translate("watchdog not initialized"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void common_hal_watchdog_deinit(watchdog_watchdogtimer_obj_t *self) {
|
||||||
|
if (esp_task_wdt_deinit() == ESP_OK) {
|
||||||
|
self->mode = WATCHDOGMODE_NONE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void watchdog_reset(void) {
|
||||||
|
common_hal_watchdog_deinit(&common_hal_mcu_watchdogtimer_obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wdt_config(watchdog_watchdogtimer_obj_t *self) {
|
||||||
|
// enable panic hanler in WATCHDOGMODE_RESET mode
|
||||||
|
// initialize Task Watchdog Timer (TWDT)
|
||||||
|
if (esp_task_wdt_init((uint32_t)self->timeout, (self->mode == WATCHDOGMODE_RESET)) != ESP_OK) {
|
||||||
|
mp_raise_RuntimeError(translate("Initialization failed due to lack of memory"));
|
||||||
|
}
|
||||||
|
esp_task_wdt_add(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
mp_float_t common_hal_watchdog_get_timeout(watchdog_watchdogtimer_obj_t *self) {
|
||||||
|
return self->timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
void common_hal_watchdog_set_timeout(watchdog_watchdogtimer_obj_t *self, mp_float_t new_timeout) {
|
||||||
|
if ((uint64_t)new_timeout > UINT32_MAX) {
|
||||||
|
mp_raise_ValueError(translate("timeout duration exceeded the maximum supported value"));
|
||||||
|
}
|
||||||
|
if ((uint32_t)self->timeout != (uint32_t)new_timeout) {
|
||||||
|
self->timeout = new_timeout;
|
||||||
|
wdt_config(self);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
watchdog_watchdogmode_t common_hal_watchdog_get_mode(watchdog_watchdogtimer_obj_t *self) {
|
||||||
|
return self->mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
void common_hal_watchdog_set_mode(watchdog_watchdogtimer_obj_t *self, watchdog_watchdogmode_t new_mode) {
|
||||||
|
if (self->mode != new_mode) {
|
||||||
|
self->mode = new_mode;
|
||||||
|
wdt_config(self);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 microDev
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MICROPY_INCLUDED_ESP32S2_COMMON_HAL_WATCHDOG_WATCHDOGTIMER_H
|
||||||
|
#define MICROPY_INCLUDED_ESP32S2_COMMON_HAL_WATCHDOG_WATCHDOGTIMER_H
|
||||||
|
|
||||||
|
#include "py/obj.h"
|
||||||
|
#include "shared-bindings/watchdog/WatchDogMode.h"
|
||||||
|
#include "shared-bindings/watchdog/WatchDogTimer.h"
|
||||||
|
|
||||||
|
struct _watchdog_watchdogtimer_obj_t {
|
||||||
|
mp_obj_base_t base;
|
||||||
|
mp_float_t timeout;
|
||||||
|
watchdog_watchdogmode_t mode;
|
||||||
|
};
|
||||||
|
|
||||||
|
// This needs to be called in order to disable the watchdog
|
||||||
|
void watchdog_reset(void);
|
||||||
|
|
||||||
|
#endif // MICROPY_INCLUDED_ESP32S2_COMMON_HAL_WATCHDOG_WATCHDOGTIMER_H
|
|
@ -0,0 +1 @@
|
||||||
|
// No watchdog module functions.
|
|
@ -72,6 +72,8 @@ void common_hal_wifi_radio_set_enabled(wifi_radio_obj_t *self, bool enabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!self->started && enabled) {
|
if (!self->started && enabled) {
|
||||||
|
// esp_wifi_start() would default to soft-AP, thus setting it to station
|
||||||
|
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA));
|
||||||
ESP_ERROR_CHECK(esp_wifi_start());
|
ESP_ERROR_CHECK(esp_wifi_start());
|
||||||
self->started = true;
|
self->started = true;
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -143,8 +143,8 @@ void wifi_reset(void) {
|
||||||
radio->handler_instance_got_ip));
|
radio->handler_instance_got_ip));
|
||||||
ESP_ERROR_CHECK(esp_wifi_deinit());
|
ESP_ERROR_CHECK(esp_wifi_deinit());
|
||||||
esp_netif_destroy(radio->netif);
|
esp_netif_destroy(radio->netif);
|
||||||
|
ESP_ERROR_CHECK(esp_event_loop_delete_default());
|
||||||
radio->netif = NULL;
|
radio->netif = NULL;
|
||||||
ESP_ERROR_CHECK(esp_netif_deinit());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ipaddress_ipaddress_to_esp_idf(mp_obj_t ip_address, ip_addr_t* esp_ip_address) {
|
void ipaddress_ipaddress_to_esp_idf(mp_obj_t ip_address, ip_addr_t* esp_ip_address) {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 8bc19ba893e5544d571a753d82b44a84799b94b1
|
Subproject commit d06744f5efc382c61cbad8758107cec308feef09
|
|
@ -27,6 +27,7 @@ CIRCUITPY_NVM = 0
|
||||||
# We don't have enough endpoints to include MIDI.
|
# We don't have enough endpoints to include MIDI.
|
||||||
CIRCUITPY_USB_MIDI = 0
|
CIRCUITPY_USB_MIDI = 0
|
||||||
CIRCUITPY_WIFI = 1
|
CIRCUITPY_WIFI = 1
|
||||||
|
CIRCUITPY_WATCHDOG ?= 1
|
||||||
CIRCUITPY_ESPIDF = 1
|
CIRCUITPY_ESPIDF = 1
|
||||||
|
|
||||||
ifndef CIRCUITPY_TOUCHIO_USE_NATIVE
|
ifndef CIRCUITPY_TOUCHIO_USE_NATIVE
|
||||||
|
|
|
@ -36,13 +36,14 @@
|
||||||
#include "freertos/FreeRTOS.h"
|
#include "freertos/FreeRTOS.h"
|
||||||
#include "freertos/task.h"
|
#include "freertos/task.h"
|
||||||
|
|
||||||
|
#include "common-hal/microcontroller/Pin.h"
|
||||||
#include "common-hal/analogio/AnalogOut.h"
|
#include "common-hal/analogio/AnalogOut.h"
|
||||||
#include "common-hal/busio/I2C.h"
|
#include "common-hal/busio/I2C.h"
|
||||||
#include "common-hal/busio/SPI.h"
|
#include "common-hal/busio/SPI.h"
|
||||||
#include "common-hal/busio/UART.h"
|
#include "common-hal/busio/UART.h"
|
||||||
#include "common-hal/pwmio/PWMOut.h"
|
|
||||||
#include "common-hal/pulseio/PulseIn.h"
|
#include "common-hal/pulseio/PulseIn.h"
|
||||||
#include "common-hal/microcontroller/Pin.h"
|
#include "common-hal/pwmio/PWMOut.h"
|
||||||
|
#include "common-hal/watchdog/WatchDogTimer.h"
|
||||||
#include "common-hal/wifi/__init__.h"
|
#include "common-hal/wifi/__init__.h"
|
||||||
#include "supervisor/memory.h"
|
#include "supervisor/memory.h"
|
||||||
#include "supervisor/shared/tick.h"
|
#include "supervisor/shared/tick.h"
|
||||||
|
@ -126,6 +127,10 @@ void reset_port(void) {
|
||||||
rtc_reset();
|
rtc_reset();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CIRCUITPY_WATCHDOG
|
||||||
|
watchdog_reset();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_WIFI
|
#if CIRCUITPY_WIFI
|
||||||
wifi_reset();
|
wifi_reset();
|
||||||
#endif
|
#endif
|
||||||
|
@ -186,14 +191,14 @@ uint32_t port_get_saved_word(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t port_get_raw_ticks(uint8_t* subticks) {
|
uint64_t port_get_raw_ticks(uint8_t* subticks) {
|
||||||
struct timeval tv_now;
|
// Convert microseconds to subticks of 1/32768 seconds
|
||||||
gettimeofday(&tv_now, NULL);
|
// 32768/1000000 = 64/15625 in lowest terms
|
||||||
// convert usec back to ticks
|
// this arithmetic overflows after 570 years
|
||||||
uint64_t all_subticks = (uint64_t)(tv_now.tv_usec * 2) / 71;
|
int64_t all_subticks = esp_timer_get_time() * 512 / 15625;
|
||||||
if (subticks != NULL) {
|
if (subticks != NULL) {
|
||||||
*subticks = all_subticks % 32;
|
*subticks = all_subticks % 32;
|
||||||
}
|
}
|
||||||
return (uint64_t)tv_now.tv_sec * 1024L + all_subticks / 32;
|
return all_subticks / 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enable 1/1024 second tick.
|
// Enable 1/1024 second tick.
|
||||||
|
|
|
@ -93,6 +93,9 @@ void common_hal_watchdog_feed(watchdog_watchdogtimer_obj_t *self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void common_hal_watchdog_deinit(watchdog_watchdogtimer_obj_t *self) {
|
void common_hal_watchdog_deinit(watchdog_watchdogtimer_obj_t *self) {
|
||||||
|
if (self->mode == WATCHDOGMODE_RESET) {
|
||||||
|
mp_raise_NotImplementedError(translate("WatchDogTimer cannot be deinitialized once mode is set to RESET"));
|
||||||
|
}
|
||||||
if (timer) {
|
if (timer) {
|
||||||
timer_free();
|
timer_free();
|
||||||
}
|
}
|
||||||
|
|
1
py/obj.c
1
py/obj.c
|
@ -125,6 +125,7 @@ void mp_obj_print_exception(const mp_print_t *print, mp_obj_t exc) {
|
||||||
mp_printf(print, decompressed_block, block);
|
mp_printf(print, decompressed_block, block);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
mp_obj_exception_clear_traceback(exc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mp_obj_print_helper(print, exc, PRINT_EXC);
|
mp_obj_print_helper(print, exc, PRINT_EXC);
|
||||||
|
|
|
@ -66,6 +66,7 @@ STATIC mp_obj_t watchdog_watchdogtimer_feed(mp_obj_t self_in) {
|
||||||
if (current_mode == WATCHDOGMODE_NONE) {
|
if (current_mode == WATCHDOGMODE_NONE) {
|
||||||
mp_raise_ValueError(translate("WatchDogTimer is not currently running"));
|
mp_raise_ValueError(translate("WatchDogTimer is not currently running"));
|
||||||
}
|
}
|
||||||
|
|
||||||
common_hal_watchdog_feed(self);
|
common_hal_watchdog_feed(self);
|
||||||
return mp_const_none;
|
return mp_const_none;
|
||||||
}
|
}
|
||||||
|
@ -78,12 +79,6 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(watchdog_watchdogtimer_feed_obj, watchdog_watch
|
||||||
//|
|
//|
|
||||||
STATIC mp_obj_t watchdog_watchdogtimer_deinit(mp_obj_t self_in) {
|
STATIC mp_obj_t watchdog_watchdogtimer_deinit(mp_obj_t self_in) {
|
||||||
watchdog_watchdogtimer_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
watchdog_watchdogtimer_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||||||
watchdog_watchdogmode_t current_mode = common_hal_watchdog_get_mode(self);
|
|
||||||
|
|
||||||
if (current_mode == WATCHDOGMODE_RESET) {
|
|
||||||
mp_raise_NotImplementedError(translate("WatchDogTimer cannot be deinitialized once mode is set to RESET"));
|
|
||||||
}
|
|
||||||
|
|
||||||
common_hal_watchdog_deinit(self);
|
common_hal_watchdog_deinit(self);
|
||||||
return mp_const_none;
|
return mp_const_none;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue