summaryrefslogtreecommitdiff
path: root/shared-bindings
AgeCommit message (Collapse)Author
2021-02-05Make timeout core types consistentLucian Copeland
2021-02-02Merge pull request #4049 from hierophect/sslsocketScott Shawcroft
Separate SSLSocket from Socket
2021-02-02Merge pull request #4114 from tannewt/spidevice_spiScott Shawcroft
Add .spi accessor to SPIDevice
2021-02-01Add .spi accessor to SPIDeviceScott Shawcroft
Fixes #4108
2021-02-01Merge pull request #4110 from microDev1/rtc-rpScott Shawcroft
RP2040: Support for RTC
2021-02-01Merge pull request #4112 from gamblor21/longint_busdevice_fixScott Shawcroft
Fixed for boards without longint
2021-02-01Fixed for boards without longintgamblor21
2021-02-02rtc implementation for rp2040microDev
2021-02-01Merge pull request #4087 from DavePutz/cpu_temp_docDan Halbert
Fixing microcontroller.cpu on multi-core cpus and adding microcontroller.cpus
2021-02-01Merge remote-tracking branch 'upstream/main' into sslsocketLucian Copeland
2021-02-01Fix hash, close, error bugsLucian Copeland
2021-01-29Fix typo in documentation.root
2021-01-29Fix documentation buildsLucian Copeland
2021-01-28Adding files for cpu temperature fixroot
2021-01-28RGBMatrix: change default to serpentine=TrueJeff Epler
The "serpentine" display order leads to much better wiring (shorter ribbon cables) and is preferred. Change the default accordingly.
2021-01-26Merge pull request #4068 from jepler/update-protomatter-tilingScott Shawcroft
protomatter: Update to version that supports tiling
2021-01-26Disallow tile=0Jeff Epler
2021-01-26rgbmatrix: Eliminate some duplicated height-calculating codeJeff Epler
This was hard to write, so let's have it written in 2 places instead of 4.
2021-01-26RGBMatrix: Additional tile tweaksJeff Epler
* Introduce explicit serpentine: bool argument instead of using negative numbers (thanks, ghost of @tannewt sitting on one shoulder) * Fix several calculations of height Testing performed (matrixportal): * set up a serpentine 64x64 virtual display with 2 64x32 tiles * tried all 4 rotations * looked at output of REPL
2021-01-26Fix stubs error, out of sockets error, invalid TLS leakLucian Copeland
2021-01-26Merge pull request #4060 from dhalbert/regularize-extmod-modulesDan Halbert
CIRCUITPY_* switches for JSON, RE, etc. Doc cleanup
2021-01-26Update documentation for microprossors with multiple cpusroot
2021-01-26protmatter: Update to version that supports tilingJeff Epler
2021-01-25Merge pull request #4051 from jamesbowman/mainScott Shawcroft
EVE: change fixed-point integer arguments to floating point
2021-01-25Merge pull request #3936 from gamblor21/busdevice_fixesScott Shawcroft
Changing adafruit_bus_device to duck typing
2021-01-25Separate Socket and SSLSocket, add LWIP connectLucian Copeland
2021-01-24CIRCUITPY_* switches for JSON, RE, etc. Doc cleanupDan Halbert
2021-01-22Change from fixed-point integer arguments to floating point in EVE API functionsJames Bowman
Changed calls: PointSize(), LineWidth(), VertexTranslateX() and VertexTranslateY() Units for all the above are now pixels, not fixed-point integers. This matches OpenGL. Docstrings updated accordingly
2021-01-21Merge pull request #3980 from anecdata/reasons2Scott Shawcroft
ESP32-S2 update docs to match code usage of IPPROTO_*
2021-01-21Merge pull request #3854 from hierophect/esp-tcpserverhierophect
ESP32S2: Implement TCP Server bindings
2021-01-20Fix warnings that come from -O3 (I think)Scott Shawcroft
2021-01-20Add initial RP2040 supportScott Shawcroft
The RP2040 is new microcontroller from Raspberry Pi that features two Cortex M0s and eight PIO state machines that are good for crunching lots of data. It has 264k RAM and a built in UF2 bootloader too. Datasheet: https://pico.raspberrypi.org/files/rp2040_datasheet.pdf
2021-01-16Fixes from draft PRgamblor21
2021-01-16Removed unused includegamblor21
2021-01-16Changing to duck-typinggamblor21
2021-01-14Merge remote-tracking branch 'upstream/main' into esp-tcpserverLucian Copeland
2021-01-13Rename to match WIFI_REASON. Also include specific error code in "Unknown ↵anecdata
failure" Exception.
2021-01-13Include all reason codes.anecdata
2021-01-13Complete non-blocking implementations, add socket close checkingLucian Copeland
2021-01-13Update shared-bindings/socketpool/SocketPool.canecdata
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-01-12WIP of non-blocking callsLucian Copeland
2021-01-12change IPPROTO_* comments to match usage in current shared-bindings and ↵anecdata
common-hal code
2021-01-12Merge remote-tracking branch 'origin/main' into audioout-esp32Jeff Epler
2021-01-11Merge pull request #3964 from dhalbert/ble-timing-fixesScott Shawcroft
Round BLE timing values; fix timeout check
2021-01-11Merge pull request #3944 from BennyE/wifi-authmodeScott Shawcroft
esp32-s2: Adding authmode keyword
2021-01-11Merge pull request #3659 from iot49/msgpackScott Shawcroft
module msgpack
2021-01-10Round BLE timing values; fix timeout checkDan Halbert
2021-01-08restore len(alarm.sleep_memory) and bool(alarm.sleep_memory)Dan Halbert
2021-01-07Merge remote-tracking branch 'origin/main' into audioout-esp32Jeff Epler
2021-01-06Adding authmode keywordBennyE