Skip to content

Update main with latest 6.0.x #3608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions locale/circuitpython.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2863,6 +2863,14 @@ msgstr ""
msgid "maximum recursion depth exceeded"
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
#, c-format
msgid "memory allocation failed, allocating %u bytes"
Expand Down Expand Up @@ -3295,6 +3303,10 @@ msgstr ""
msgid "sort argument must be an ndarray"
msgstr ""

#: extmod/ulab/code/numerical/numerical.c
msgid "sorted axis can't be longer than 65535"
msgstr ""

#: extmod/ulab/code/filter/filter.c
msgid "sos array must be of shape (n_section, 6)"
msgstr ""
Expand Down
4 changes: 2 additions & 2 deletions ports/nrf/boards/circuitplayground_bluefruit/mpconfigboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
#define DEFAULT_I2C_BUS_SCL (&pin_P0_04)
#define DEFAULT_I2C_BUS_SDA (&pin_P0_05)

#define DEFAULT_SPI_BUS_SCK (&pin_P0_05)
#define DEFAULT_SPI_BUS_MOSI (&pin_P1_03)
#define DEFAULT_SPI_BUS_SCK (&pin_P0_02)
#define DEFAULT_SPI_BUS_MOSI (&pin_P0_03)
#define DEFAULT_SPI_BUS_MISO (&pin_P0_29)

#define DEFAULT_UART_BUS_RX (&pin_P0_30)
Expand Down