Merge pull request #3608 from adafruit/6.0.x

Update main with latest 6.0.x
This commit is contained in:
Jeff Epler 2020-10-27 11:47:44 -05:00 committed by GitHub
commit 5110fec312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 3 deletions

@ -1 +1 @@
Subproject commit 11a7ecff6d76a02644ff23a734b792afaa615e44 Subproject commit 8242b84753355433b61230ab6631c06e5ac77f35

View File

@ -2871,6 +2871,14 @@ msgstr ""
msgid "maximum recursion depth exceeded" msgid "maximum recursion depth exceeded"
msgstr "" msgstr ""
#: extmod/ulab/code/approx/approx.c
msgid "maxiter must be > 0"
msgstr ""
#: extmod/ulab/code/approx/approx.c
msgid "maxiter should be > 0"
msgstr ""
#: py/runtime.c #: py/runtime.c
#, c-format #, c-format
msgid "memory allocation failed, allocating %u bytes" msgid "memory allocation failed, allocating %u bytes"
@ -3303,6 +3311,10 @@ msgstr ""
msgid "sort argument must be an ndarray" msgid "sort argument must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numerical/numerical.c
msgid "sorted axis can't be longer than 65535"
msgstr ""
#: extmod/ulab/code/filter/filter.c #: extmod/ulab/code/filter/filter.c
msgid "sos array must be of shape (n_section, 6)" msgid "sos array must be of shape (n_section, 6)"
msgstr "" msgstr ""

View File

@ -59,8 +59,8 @@
#define DEFAULT_I2C_BUS_SCL (&pin_P0_04) #define DEFAULT_I2C_BUS_SCL (&pin_P0_04)
#define DEFAULT_I2C_BUS_SDA (&pin_P0_05) #define DEFAULT_I2C_BUS_SDA (&pin_P0_05)
#define DEFAULT_SPI_BUS_SCK (&pin_P0_05) #define DEFAULT_SPI_BUS_SCK (&pin_P0_02)
#define DEFAULT_SPI_BUS_MOSI (&pin_P1_03) #define DEFAULT_SPI_BUS_MOSI (&pin_P0_03)
#define DEFAULT_SPI_BUS_MISO (&pin_P0_29) #define DEFAULT_SPI_BUS_MISO (&pin_P0_29)
#define DEFAULT_UART_BUS_RX (&pin_P0_30) #define DEFAULT_UART_BUS_RX (&pin_P0_30)