summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-03Merge pull request #4544 from weblate/weblate-circuitpython-mainHEADmainJeff Epler
Translations update from Weblate
2021-04-03Update translation filesHosted Weblate
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2021-04-03Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-04-02Merge pull request #4543 from bergdahl/mainDan Halbert
Changed confusing error messages.
2021-04-02Ran make translateJonny Bergdahl
2021-04-02Update translation filesHosted Weblate
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2021-04-02Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-04-02Translated using Weblate (Spanish)Jose David M
Currently translated at 100.0% (969 of 969 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/es/
2021-04-02Merge pull request #4533 from jepler/upgrade-ulabDan Halbert
update ulab to 2.1.5 (+ a doc building fix in ulab)
2021-04-02Changed error message to display the generic term 'system firmware' instead ↵Jonny Bergdahl
of the Nordic specific term 'soft device'
2021-04-02py.mk: locate ulab sources with shell-find.Jeff Epler
2021-04-02can't xref this right nowJeff Epler
2021-04-02can't xref this right nowJeff Epler
2021-04-02displayio: ulab.frombuffer -> ulab.numpy.frombufferJeff Epler
2021-04-02stubs: ulab.array -> ulab.ndarrayJeff Epler
2021-04-02make translateJeff Epler
2021-04-02update ulab to 2.1.5Jeff Epler
2021-04-02Merge pull request #4539 from Neradoc/add-alias-boards-to-support-matrixScott Shawcroft
add alias boards and modules to the support matrix
2021-04-02Merge pull request #4530 from jepler/mimxrt1011-pwmioJeff Epler
mimxrt1011: pwmio: Enable basic PWMOut functionality
2021-04-02Merge pull request #4538 from hathach/fix-midi-buffer-issueJeff Epler
update tinyusb to fix midi buffer overflow issue
2021-04-02add alias boards and bus_device to the support matrixNeradoc
add list with manual brand names for aliases the new info in the support_matrix is used in build_board_info.py
2021-04-02update tinyusb to fix midi buffer overflow issuehathach
2021-04-01Merge pull request #4534 from UnexpectedCircuitPython/mainDan Halbert
Changed some pins for TinyS2
2021-04-01Merge pull request #4535 from tannewt/packetbuffer_fixupDan Halbert
Two small PacketBuffer fixes
2021-04-01Two small PacketBuffer fixesScott Shawcroft
1. Allow for ctrl-c during a write. 2. Handle disconnects when acting as a client.
2021-04-02Changed some pins for TinyS2Seon Rozenblum
2021-04-01Add pinmux info for 1021 and 1062 family MCUsJeff Epler
2021-04-01mimxrt1011: pwmout: Add prescaler, fix duty_cycle=65535Jeff Epler
2021-04-01Merge pull request #4526 from t-ikegami/wio_pin_assign_fixScott Shawcroft
Fix SD_DET pin assignment of seeduino_wio_terminal.
2021-04-01Merge pull request #4527 from t-ikegami/Terminal_add_esc_seqsScott Shawcroft
Add two escape sequences to terminalio.Termial
2021-04-01Merge pull request #4523 from weblate/weblate-circuitpython-mainScott Shawcroft
Translations update from Weblate
2021-04-01mimxrt1011: pwmio: Enable basic PWMOut functionalityJeff Epler
After this change, the following program works for me on the MIMXRT1010-EVK: ```python import pwmio import board p = pwmio.PWMOut(board.D13, frequency=1_000_000, variable_frequency=True) p.duty_cycle = 32868 while True: pass ``` Querying and varying the duty_cycle and frequency work as well. The lowest frequency obtainable is about 2kHz; there is an additional divider which would allow lower PWM frequencies (I think 1kHz is important for servos?) Something odd happens with very low duty cycles, such as ```python >>> p.frequency = 2000 >>> p.duty_cycle = 2 ``` instead of a symmetrical waveform, it's asymmetrical. With `duty_cycle=4`, the effect disappears. The reason for this is probably hidden in the datasheet, but could affect servos or other things that count pulse widths.
2021-04-01Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-04-01Translated using Weblate (Swedish)Jonny Bergdahl
Currently translated at 100.0% (969 of 969 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/sv/
2021-04-01Translated using Weblate (Portuguese (Brazil))Wellington Terumi Uemura
Currently translated at 100.0% (969 of 969 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2021-04-01Translated using Weblate (French)Hugo Dahl
Currently translated at 100.0% (969 of 969 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/
2021-04-01Merge pull request #4528 from adafruit/re-arrange-ci-taskDan Halbert
Re-Arrange CI Task
2021-04-01clone repo before installing depsmicroDev
closes #4524
2021-04-01Fix formatTsutomu IKEGAMI
2021-04-01Fix formatTsutomu IKEGAMI
2021-04-01Fix format.Tsutomu IKEGAMI
2021-04-01Add two escape sequences to terminalio.Termial:Tsutomu IKEGAMI
- ESC[yy;xxH : move cursor to (xx, yy) - ESC[2J : clear screen
2021-04-01Fix SD_DET pin assignment of seeduino_wio_terminal.Tsutomu IKEGAMI
2021-04-01Update translation filesHosted Weblate
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2021-03-31Merge pull request #4522 from tannewt/ble_fixup7.0.0-alpha.06.2.0-rc.0Dan Halbert
Fix central pairing and crash on clear
2021-03-31Fix central pairing and crash on clearScott Shawcroft
The list_clear would crash if we tried to clear a NULL list. (It can happen if we haven't tried to discover any services.)
2021-03-31Merge pull request #4521 from dhalbert/add-en_GBDan Halbert
add en_GB translation to builds
2021-03-31Merge pull request #4518 from jepler/fix-bogus-assertionDan Halbert
mimxrt10xx: Fix bogus assertion.
2021-03-31add en_GB translation to buildsDan Halbert
2021-03-31Merge pull request #4517 from dhalbert/no-remote-wakeupScott Shawcroft
Turn off remote wakeup in USB configuration descriptor