package/micropython: Bug fix release 1.19.1

This is a bug fix release.  The changes are:

- extmod/machine_i2c: only use WRITE1 option if transfer supports it

  This fixes the machine.SoftI2C.readfrom_mem() method on esp32, so it
  writes the address to read from.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Chris Packham 2022-10-02 13:49:30 +13:00 committed by Peter Korsgaard
parent 3ac7d91c87
commit 199f8fe656
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
#locally computed
sha256 128b6fb13b518b4d3e75b4f0c04f175dc336c762d8c6360f647e91dc4d25e5d0 micropython-1.19.tar.gz
sha256 c980ad7e742491df0dc10db2958137dbbf9aa7a8009e102fc75f4c0cac2d6b5e micropython-1.19.1.tar.gz
sha256 0f678c2abd7fe2cfca36693630506bbcbdfc219bd04bf4a02fe3b094ae4c666f LICENSE

View File

@ -4,7 +4,7 @@
#
################################################################################
MICROPYTHON_VERSION = 1.19
MICROPYTHON_VERSION = 1.19.1
MICROPYTHON_SITE = $(call github,micropython,micropython,v$(MICROPYTHON_VERSION))
# Micropython has a lot of code copied from other projects, and also a number
# of submodules for various libs. However, we don't even clone the submodules,