Skip to content

Commit

Permalink
lib/micropython-lib: Update submodule to latest.
Browse files Browse the repository at this point in the history
This brings in the following new modules: hs3003, bmi270, bmm150, cbor2
and senml.  It also refactors lsm6dsox and lsm9ds1.

Signed-off-by: Damien George <[email protected]>
  • Loading branch information
dpgeorge committed Mar 7, 2023
1 parent 6bb6074 commit 2ec101e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/micropython-lib
Submodule micropython-lib updated 68 files
+11 −0 .github/workflows/build_packages.yml
+12 −0 .github/workflows/cleanup_published_packages.yml
+46 −0 CONTRIBUTING.md
+31 −0 README.md
+1 −1 micropython/bluetooth/aioble-central/manifest.py
+3 −2 micropython/bluetooth/aioble/aioble/central.py
+1 −0 micropython/bluetooth/aioble/aioble/client.py
+1 −1 micropython/bluetooth/aioble/manifest.py
+1 −0 micropython/bluetooth/aioble/multitests/ble_write_order.py
+0 −12 micropython/drivers/codec/wm8960/wm8960.py
+1 −0 micropython/drivers/display/ssd1306/ssd1306.py
+634 −0 micropython/drivers/imu/bmi270/bmi270.py
+2 −0 micropython/drivers/imu/bmi270/manifest.py
+187 −0 micropython/drivers/imu/bmm150/bmm150.py
+2 −0 micropython/drivers/imu/bmm150/manifest.py
+65 −65 micropython/drivers/imu/lsm6dsox/lsm6dsox.py
+3 −3 micropython/drivers/imu/lsm6dsox/lsm6dsox_basic.py
+2 −2 micropython/drivers/imu/lsm6dsox/lsm6dsox_mlc.py
+1 −0 micropython/drivers/imu/lsm6dsox/manifest.py
+94 −80 micropython/drivers/imu/lsm9ds1/lsm9ds1.py
+1 −0 micropython/drivers/imu/lsm9ds1/manifest.py
+64 −0 micropython/drivers/sensor/hs3003/hs3003.py
+2 −0 micropython/drivers/sensor/hs3003/manifest.py
+0 −1 micropython/drivers/storage/sdcard/sdcard.py
+12 −0 micropython/senml/README.md
+1 −0 micropython/senml/docs/_config.yml
+13 −0 micropython/senml/docs/index.md
+8 −0 micropython/senml/docs/senml_base.md
+216 −0 micropython/senml/docs/senml_pack.md
+86 −0 micropython/senml/docs/senml_record.md
+183 −0 micropython/senml/docs/senml_unit.md
+67 −0 micropython/senml/examples/actuator.py
+47 −0 micropython/senml/examples/base.py
+39 −0 micropython/senml/examples/basic.py
+45 −0 micropython/senml/examples/basic2.py
+42 −0 micropython/senml/examples/basic_cbor.py
+133 −0 micropython/senml/examples/custom_record.py
+50 −0 micropython/senml/examples/gateway.py
+75 −0 micropython/senml/examples/gateway_actuators.py
+53 −0 micropython/senml/examples/supported_data_types.py
+5 −0 micropython/senml/manifest.py
+30 −0 micropython/senml/senml/__init__.py
+30 −0 micropython/senml/senml/senml_base.py
+360 −0 micropython/senml/senml/senml_pack.py
+247 −0 micropython/senml/senml/senml_record.py
+89 −0 micropython/senml/senml/senml_unit.py
+0 −1 micropython/umqtt.robust/umqtt/robust.py
+1 −0 micropython/umqtt.simple/example_sub.py
+28 −0 python-ecosys/cbor2/cbor2/__init__.py
+262 −0 python-ecosys/cbor2/cbor2/decoder.py
+184 −0 python-ecosys/cbor2/cbor2/encoder.py
+39 −0 python-ecosys/cbor2/examples/cbor_test.py
+3 −0 python-ecosys/cbor2/manifest.py
+0 −1 python-stdlib/contextlib/tests.py
+1 −0 python-stdlib/copy/copy.py
+0 −1 python-stdlib/json/json/encoder.py
+1 −0 python-stdlib/logging/examples/example_logging_2.py
+0 −1 python-stdlib/textwrap/textwrap.py
+214 −0 python-stdlib/unittest/examples/example_subtest.py
+0 −1 python-stdlib/unittest/tests/test_assertions.py
+100 −1 tools/ci.sh
+0 −1 unix-ffi/email.internal/email/_encoded_words.py
+0 −1 unix-ffi/email.internal/email/_policybase.py
+1 −0 unix-ffi/email.utils/email/utils.py
+1 −1 unix-ffi/html.entities/html/entities.py
+0 −1 unix-ffi/http.client/http/client.py
+0 −1 unix-ffi/machine/machine/pin.py
+1 −0 unix-ffi/urllib.parse/urllib/parse.py

0 comments on commit 2ec101e

Please sign in to comment.