Commit Graph

18311 Commits

Author SHA1 Message Date
Dan Halbert 72fa7d88b8 fix doc errors 2020-12-01 20:13:46 -05:00
Dan Halbert 8b7c23c1ee address review comments 2020-12-01 20:01:14 -05:00
Dan Halbert 28d9e9186e Disable complex arithmetic on SAMD21 builds to make space 2020-11-28 10:12:46 -05:00
Dan Halbert 2830cc9433 make translate 2020-11-27 23:57:59 -05:00
Dan Halbert 65e2fe4654 fix stub problems; touch up doc 2020-11-27 23:27:15 -05:00
Dan Halbert f96475cbbf update Requests; rolled back by accident 2020-11-27 16:24:36 -05:00
Dan Halbert 596e0e4bd2 merge from upstream 2020-11-27 16:06:57 -05:00
Dan Halbert e308a9ec11 working! PinAlarm not implemented yet. 2020-11-27 16:03:37 -05:00
Limor "Ladyada" Fried bd87201c4f
Merge pull request #3764 from weblate/weblate-circuitpython-main
Translations update from Weblate
2020-11-27 15:01:43 -05:00
Hosted Weblate a4e310cfc2
Merge branch 'origin/main' into Weblate. 2020-11-27 19:34:07 +01:00
sporeball 884028c748
Translated using Weblate (Japanese)
Currently translated at 69.2% (598 of 864 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/ja/
2020-11-27 19:34:06 +01:00
Iván Montiel Cardona 518328c71e
Translated using Weblate (Spanish)
Currently translated at 100.0% (864 of 864 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/es/
2020-11-27 19:34:06 +01:00
Limor "Ladyada" Fried 9b2eae49f9
Merge pull request #3766 from ehershey/patch-1
fix README typos
2020-11-27 13:33:53 -05:00
Ernie Hershey 3cde6c3fdc
README typos 2020-11-27 12:07:49 -05:00
Dan Halbert 104a089677 deep sleep working; deep sleep delay when connected 2020-11-26 22:06:37 -05:00
Hosted Weblate 9c779c7ab7
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2020-11-26 04:11:29 +01:00
Hosted Weblate c1be2c0c19
Merge branch 'origin/main' into Weblate. 2020-11-26 04:11:27 +01:00
Daniel Bravo Darriba cb14a2a824
Translated using Weblate (Spanish)
Currently translated at 100.0% (864 of 864 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/es/
2020-11-26 04:11:26 +01:00
Daniel Bravo Darriba 715b09bff2
Translated using Weblate (German)
Currently translated at 85.8% (742 of 864 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/de/
2020-11-26 04:11:26 +01:00
Jeff Epler 7923aa0a62
Merge pull request #3708 from hierophect/esp32s2-udp
ESP32-S2: Add UDP with recvfrom_into and sendto
2020-11-25 21:11:20 -06:00
Jeff Epler 6fd123a5c4
Merge pull request #3758 from tannewt/update_connect_doc
Update wifi.Radio.connect doc
2020-11-25 21:09:56 -06:00
Scott Shawcroft abff2615cb
Merge pull request #3754 from hierophect/esp-spi-pinclaim
ESP32S2: fix pin claiming bugs
2020-11-25 15:11:29 -08:00
Scott Shawcroft 015ba00212
Merge pull request #3760 from arturo182/colorconverter_fix
displayio: Fix ColorConverter make_* methods
2020-11-25 15:03:24 -08:00
Scott Shawcroft 904fadbb5c
Merge pull request #3761 from arturo182/update_requests
Update the requests frozen library
2020-11-25 14:52:52 -08:00
Dan Halbert ef0830bfe2 merge from upstream + wip 2020-11-25 17:52:06 -05:00
Scott Shawcroft c284a57a99
Merge pull request #3757 from jamesbowman/main
Fix opcode typo in EVE VertexFormat()
2020-11-25 14:50:03 -08:00
Scott Shawcroft 35086587aa
Merge pull request #3756 from weblate/weblate-circuitpython-main
Translations update from Weblate
2020-11-25 14:49:31 -08:00
Hosted Weblate 5e38716817
Merge branch 'origin/main' into Weblate. 2020-11-25 22:41:00 +01:00
Scott Shawcroft e7bab9e86b
Merge pull request #3759 from tannewt/recv_exit
Exit faster on recv when TLS connection closed
2020-11-25 13:40:52 -08:00
Dan Halbert 9dbea36eac changed alarm.time API 2020-11-25 15:09:27 -05:00
Lucian Copeland a854da35d3 Fix masking issue causing pin claim problems 2020-11-25 12:14:56 -05:00
Lucian Copeland c9bc877683 Merge remote-tracking branch 'upstream/main' into esp-spi-pinclaim 2020-11-25 10:43:35 -05:00
Dan Halbert f868cc5dd0 some API renaming and bug fixes; fix docs 2020-11-24 23:37:05 -05:00
arturo182 0d9a0235a2 Update the requests frozen library 2020-11-25 03:48:50 +01:00
arturo182 ca1a85c47f displayio: Fix ColorConverter make_* methods 2020-11-25 03:39:14 +01:00
Scott Shawcroft 9a692c3222
Exit faster on recv when TLS connection closed
When a TLS connection is closed by the server it usually sends a
notice. We see this incoming byte with lwip_ioctl and try to read
it. The read returns 0 but we keep trying anyway. Now, we quit
trying when we get zero back. If the connection was still alive
it'd either read a byte or delay until a byte could be read.
2020-11-24 18:14:22 -08:00
Scott Shawcroft 4ac11c8d31
Update wifi.Radio.connect doc
Now it includes bssid info.
2020-11-24 17:54:39 -08:00
James Bowman fc344bc818 Fix opcode typo in VertexFormat() 2020-11-24 17:26:39 -08:00
Hosted Weblate 8e76fce60a
Merge branch 'origin/main' into Weblate. 2020-11-25 02:11:53 +01:00
Mitsuharu Aoyama be44c16e25
Translated using Weblate (Japanese)
Currently translated at 69.0% (597 of 864 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/ja/
2020-11-25 02:11:52 +01:00
Jeff Epler e778fc1f87
Merge pull request #3741 from hathach/fix-cdc-connection-race
update tinyusb to fix cdc connection race
2020-11-24 19:11:41 -06:00
hierophect 510f464234
Merge branch 'main' into esp32s2-udp 2020-11-24 18:28:10 -05:00
Hosted Weblate fcafeb1766
Merge branch 'origin/main' into Weblate. 2020-11-25 00:22:30 +01:00
Wellington Terumi Uemura 4ca50982b7
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (864 of 864 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2020-11-25 00:22:30 +01:00
Scott Shawcroft 8364734ba3
Merge pull request #3749 from skerr92/add-cpsapling-spiflash
Add cpsapling spiflash
2020-11-24 15:22:21 -08:00
Jeff Epler c451b22255 Disable 3-arg pow() function on m0 boards
`pow(a, b, c)` can compute `(a ** b) % c` efficiently (in time and memory).
This can be useful for extremely specific applications, like implementing
the RSA cryptosystem.  For typical uses of CircuitPython, this is not an
important feature.  A survey of the bundle and learn system didn't find
any uses.

Disable it on M0 builds so that we can fit in needed upgrades to the USB
stack.
2020-11-24 16:54:33 -06:00
Hosted Weblate ff7bab12aa
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2020-11-24 23:45:47 +01:00
Hosted Weblate 7ca1cf6e22
Merge branch 'origin/main' into Weblate. 2020-11-24 23:45:45 +01:00
Wellington Terumi Uemura 241d920757
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (863 of 863 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2020-11-24 23:45:45 +01:00
Antonin ENFRUN 966e0b256c
Translated using Weblate (French)
Currently translated at 98.2% (848 of 863 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/
2020-11-24 23:45:44 +01:00