summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-07-28fix windows' encoding defaultsencodinglady ada
2020-07-24Merge pull request #3178 from WarriorOfWire/async_def_coroutine_simScott Shawcroft
add coroutine behavior for generators
2020-07-24Merge pull request #3199 from hierophect/litex-build-hotfixhierophect
Litex: fix microcontroller common-hal interface
2020-07-24Finish common-hal pin APILucian Copeland
2020-07-24Merge pull request #3099 from hierophect/stm32-timer-allocatorhierophect
STM32: Add timer allocator, PulseIO adjustments
2020-07-23remove new char*s because m0 is way oversubscribedKenny
2020-07-23translationsKenny
2020-07-23also disable async_coroutine test in native emitterKenny
2020-07-23add coroutine behavior for generatorsKenny
coroutines don't have __next__; they also call themselves coroutines. This does not change the fact that `async def` methods are generators, but it does make them behave more like CPython.
2020-07-23Merge pull request #3195 from tannewt/remove_i2c_stop6.0.0-alpha.2Scott Shawcroft
Remove stop kwarg from I2C writeto.
2020-07-23Merge pull request #3194 from tannewt/gcc10Scott Shawcroft
Prep for GCC10
2020-07-23Merge pull request #3185 from hierophect/esp32-pulseioScott Shawcroft
ESP32-S2: PWMOut
2020-07-23Remove stop kwarg from I2C writeto.Scott Shawcroft
Fixes #2082
2020-07-23Fix unintended timer reset, style changesLucian Copeland
2020-07-23Merge pull request #3189 from weblate/weblate-circuitpython-mainJeff Epler
Translations update from Weblate
2020-07-23Translated using Weblate (Portuguese (Brazil))Wellington Terumi Uemura
Currently translated at 100.0% (783 of 783 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2020-07-22py/py.mk: Use additional CFLAGS to compile string0.c.Damien George
Otherwise functions like memset might get optimised to call themselves (eg with gcc 10). And provide CFLAGS_BUILTIN so these options can be changed by a port if needed. Fixes issue #6053.
2020-07-22Add externs. GCC10 complains about duplicate definesScott Shawcroft
2020-07-23Update 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/
2020-07-23Translated using Weblate (Spanish)Alvaro Figueroa
Currently translated at 100.0% (780 of 780 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/es/
2020-07-22Merge pull request #3163 from tannewt/memmonitorDan Halbert
Add `memorymonitor` for memory allocation debugging
2020-07-22Merge branch 'main' into memmonitorScott Shawcroft
2020-07-22Merge pull request #3107 from dherrada/type_hintsScott Shawcroft
Adding type hints
2020-07-22Add PWMOutLucian Copeland
2020-07-22Merge branch 'main' into memmonitorScott Shawcroft
2020-07-22Claim USB pins at startup to prevent overwritesLucian Copeland
2020-07-22Merge branch 'main' into stm32-timer-allocatorhierophect
2020-07-22Free timers when modules de-initLucian Copeland
2020-07-22Merge pull request #3186 from weblate/weblate-circuitpython-mainDan Halbert
Translations update from Weblate
2020-07-22Update 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/
2020-07-22Merge pull request #3161 from tannewt/bytearray_findDan Halbert
Add find variants to bytearray
2020-07-22Merge pull request #3162 from tannewt/update_mistuneDan Halbert
Move release note converter to latest markdown helper lib
2020-07-21Fix BluetoothError doc typo we copiedScott Shawcroft
2020-07-21Disable countio on circuitbrains basicScott Shawcroft
2020-07-21Updates based on reviewScott Shawcroft
2020-07-21Turn off find when CPYTHON_COMPAT is offScott Shawcroft
2020-07-21Merge remote-tracking branch 'adafruit/main' into bytearray_findScott Shawcroft
2020-07-21Merge pull request #3160 from tannewt/enable_pystackScott Shawcroft
Enable PYSTACK to keep function state out of the heap
2020-07-21Merge branch 'main' into type_hintsdherrada
2020-07-21Merge pull request #3164 from tannewt/disable_networkScott Shawcroft
Disable existing native networking.
2020-07-21Merge pull request #3182 from ciscorn/extract_pyiScott Shawcroft
Improve .pyi generation
2020-07-21Only add .find without CPYTHON_COMPATScott Shawcroft
2020-07-21Turn off GC opt on uchip boardScott Shawcroft
2020-07-21Merge pull request #3177 from WarriorOfWire/issue_3170Scott Shawcroft
vectorio: fix VectorShape non-transposed pixel placement
2020-07-21Be more aggressive with uChip buildScott Shawcroft
2020-07-21Merge pull request #3149 from DavePutz/issue2949Dan Halbert
Issue#2949 Put in a check to prevent USB starvation by long calculations
2020-07-22Improve .pyi generationTaku Fukada
2020-07-20vectorio: fix VectorShape non-transposed pixel placementKenny
Fixes https://github.com/adafruit/circuitpython/issues/3170 The absolute transform needs to be subtracted in all cases, not only when the coordinate system is transposed.
2020-07-20Tweak declaration for boards with TCMScott Shawcroft
2020-07-20Merge branch 'main' into disable_networkScott Shawcroft