forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10012 from dhalbert/update-frozen-for-9.2.4
update frozen modules for 9.2.4 release
- Loading branch information
Showing
56 changed files
with
56 additions
and
55 deletions.
There are no files selected for viewing
Submodule Adafruit_CircuitPython_AHTx0
updated
3 files
+3 −0 | .readthedocs.yaml | |
+5 −0 | adafruit_ahtx0.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_APDS9960
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −8 | docs/conf.py |
Submodule Adafruit_CircuitPython_BLE
updated
8 files
+1 −1 | .pre-commit-config.yaml | |
+2 −1 | .pylintrc | |
+3 −0 | .readthedocs.yaml | |
+6 −1 | adafruit_ble/characteristics/stream.py | |
+4 −2 | adafruit_ble/services/nordic.py | |
+9 −1 | adafruit_ble/services/standard/device_info.py | |
+21 −18 | adafruit_ble/services/standard/hid.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_BLE_Apple_Notification_Center
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Bitmap_Font
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_BusDevice
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_CircuitPlayground
updated
3 files
+3 −0 | .readthedocs.yaml | |
+5 −5 | adafruit_circuitplayground/bluefruit.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_ConnectionManager
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_DS3231
updated
4 files
+3 −0 | .readthedocs.yaml | |
+1 −1 | README.rst | |
+0 −1 | docs/conf.py | |
+61 −0 | examples/ds3231_displayio_simpletest.py |
Submodule Adafruit_CircuitPython_DisplayIO_SSD1306
updated
3 files
+3 −0 | .readthedocs.yaml | |
+33 −5 | adafruit_displayio_ssd1306.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Display_Shapes
updated
13 files
+1 −1 | .pre-commit-config.yaml | |
+1 −4 | .pylintrc | |
+3 −0 | .readthedocs.yaml | |
+121 −16 | adafruit_display_shapes/arc.py | |
+142 −0 | adafruit_display_shapes/filled_polygon.py | |
+28 −9 | adafruit_display_shapes/polygon.py | |
+13 −0 | docs/_static/custom.css | |
+3 −0 | docs/api.rst | |
+3 −2 | docs/conf.py | |
+9 −0 | docs/examples.rst | |
+65 −0 | examples/display_shapes_arc_dynamic.py | |
+41 −0 | examples/display_shapes_filled_polygon_simpletest.py | |
+1 −2 | examples/display_shapes_sparkline_ticks.py |
Submodule Adafruit_CircuitPython_Display_Text
updated
8 files
+3 −0 | .readthedocs.yaml | |
+2 −4 | adafruit_display_text/__init__.py | |
+12 −5 | adafruit_display_text/bitmap_label.py | |
+11 −9 | adafruit_display_text/scrolling_label.py | |
+435 −0 | adafruit_display_text/text_box.py | |
+3 −0 | docs/api.rst | |
+0 −1 | docs/conf.py | |
+63 −0 | examples/display_text_text_box_simpletest.py |
Submodule Adafruit_CircuitPython_DotStar
updated
5 files
+3 −0 | .readthedocs.yaml | |
+1 −0 | adafruit_dotstar.py | |
+0 −1 | docs/conf.py | |
+3 −0 | examples/dotstar_image_paint.py | |
+3 −0 | examples/dotstar_image_pov.py |
Submodule Adafruit_CircuitPython_ESP32SPI
updated
5 files
+2 −2 | .pre-commit-config.yaml | |
+3 −0 | .readthedocs.yaml | |
+1 −1 | adafruit_esp32spi/adafruit_esp32spi.py | |
+0 −1 | docs/conf.py | |
+0 −0 | examples/server/esp32spi_wsgiserver.py |
Submodule Adafruit_CircuitPython_FakeRequests
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_FocalTouch
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_HID
updated
6 files
+1 −1 | .pre-commit-config.yaml | |
+3 −0 | .readthedocs.yaml | |
+5 −9 | adafruit_hid/__init__.py | |
+2 −2 | adafruit_hid/keyboard.py | |
+3 −0 | docs/api.rst | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_HTTPServer
updated
9 files
+3 −0 | .readthedocs.yaml | |
+1 −0 | README.rst | |
+91 −10 | adafruit_httpserver/server.py | |
+0 −1 | docs/conf.py | |
+57 −8 | docs/examples.rst | |
+2 −2 | docs/starting_methods.rst | |
+30 −0 | examples/httpserver_https.py | |
+3 −3 | examples/httpserver_multiple_servers.py | |
+128 −0 | examples/httpserver_video_stream.py |
Submodule Adafruit_CircuitPython_IRRemote
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_IS31FL3731
updated
21 files
+5 −0 | .gitattributes | |
+11 −31 | .pre-commit-config.yaml | |
+0 −399 | .pylintrc | |
+3 −0 | .readthedocs.yaml | |
+3 −3 | README.rst | |
+21 −26 | adafruit_is31fl3731/__init__.py | |
+3 −7 | adafruit_is31fl3731/keybow2040.py | |
+4 −7 | adafruit_is31fl3731/led_shim.py | |
+2 −4 | adafruit_is31fl3731/matrix.py | |
+3 −2 | adafruit_is31fl3731/rgbmatrix5x5.py | |
+2 −7 | docs/conf.py | |
+5 −9 | examples/is31fl3731_16x9_charlieplexed_pwm.py | |
+1 −0 | examples/is31fl3731_frame_example.py | |
+6 −9 | examples/is31fl3731_keybow_2040_rainbow.py | |
+2 −0 | examples/is31fl3731_ledshim_fade.py | |
+2 −0 | examples/is31fl3731_ledshim_rainbow.py | |
+1 −0 | examples/is31fl3731_pillow_animated_gif.py | |
+1 −3 | examples/is31fl3731_pillow_marquee.py | |
+7 −10 | examples/is31fl3731_rgbmatrix5x5_rainbow.py | |
+2 −4 | examples/is31fl3731_text_example.py | |
+99 −0 | ruff.toml |
Submodule Adafruit_CircuitPython_ImageLoad
updated
49 files
Submodule Adafruit_CircuitPython_LC709203F
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_LED_Animation
updated
6 files
Submodule Adafruit_CircuitPython_MIDI
updated
6 files
+3 −0 | .readthedocs.yaml | |
+17 −13 | adafruit_midi/__init__.py | |
+38 −0 | adafruit_midi/active_sensing.py | |
+41 −20 | adafruit_midi/midi_message.py | |
+3 −0 | docs/api.rst | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_MPU6050
updated
4 files
+3 −0 | .readthedocs.yaml | |
+2 −0 | README.rst | |
+38 −25 | adafruit_mpu6050.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_NeoPixel
updated
3 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py | |
+2 −1 | neopixel.py |
Submodule Adafruit_CircuitPython_Pixel_Framebuf
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_PortalBase
updated
13 files
+5 −0 | .gitattributes | |
+11 −31 | .pre-commit-config.yaml | |
+0 −399 | .pylintrc | |
+3 −0 | .readthedocs.yaml | |
+12 −3 | README.rst | |
+12 −18 | adafruit_portalbase/__init__.py | |
+5 −10 | adafruit_portalbase/graphics.py | |
+41 −67 | adafruit_portalbase/network.py | |
+4 −3 | adafruit_portalbase/wifi_coprocessor.py | |
+4 −5 | adafruit_portalbase/wifi_esp32s2.py | |
+2 −7 | docs/conf.py | |
+0 −1 | examples/portalbase_simpletest.py | |
+99 −0 | ruff.toml |
Submodule Adafruit_CircuitPython_ProgressBar
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Register
updated
3 files
+3 −0 | .readthedocs.yaml | |
+6 −2 | adafruit_register/i2c_bcd_alarm.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Requests
updated
42 files
Submodule Adafruit_CircuitPython_SHT4x
updated
3 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py | |
+53 −0 | examples/sht4x_displayio_simpletest.py |
Submodule Adafruit_CircuitPython_SSD1680
updated
3 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | adafruit_ssd1680.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_SimpleIO
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_SimpleMath
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Thermistor
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Ticks
updated
3 files
+3 −0 | .readthedocs.yaml | |
+3 −1 | adafruit_ticks.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_Wiznet5k
updated
3 files
+3 −0 | .readthedocs.yaml | |
+6 −1 | adafruit_wiznet5k/adafruit_wiznet5k.py | |
+0 −1 | docs/conf.py |
Submodule Adafruit_CircuitPython_framebuf
updated
2 files
+3 −0 | .readthedocs.yaml | |
+0 −1 | docs/conf.py |
Submodule circuitpython-stage
updated
6 files
+35 −0 | .readthedocs.yaml | |
+2 −2 | docs/conf.py | |
+1 −0 | docs/index.rst | |
+1 −0 | ugame_s3/pew.py | |
+1 −0 | ugame_s3/stage.py | |
+100 −0 | ugame_s3/ugame.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
True | ||
OverflowError | ||
task start 1 | ||
task end 1 | ||
2 | ||
|