Skip to content

Commit b26e4ca

Browse files
authored
Merge pull request #7985 from jepler/synthio-lfo-dag
synthio: Add LFOs
2 parents 2422179 + 2b42783 commit b26e4ca

File tree

84 files changed

+5492
-448
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+5492
-448
lines changed

locale/circuitpython.pot

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ msgstr ""
211211
msgid "%q must be of type %q or %q, not %q"
212212
msgstr ""
213213

214-
#: py/argcheck.c py/obj.c py/objstrunicode.c
214+
#: py/argcheck.c py/obj.c py/objstrunicode.c shared-module/synthio/__init__.c
215215
msgid "%q must be of type %q, not %q"
216216
msgstr ""
217217

@@ -2470,6 +2470,10 @@ msgstr ""
24702470
msgid "annotation must be an identifier"
24712471
msgstr ""
24722472

2473+
#: extmod/ulab/code/numpy/create.c
2474+
msgid "arange: cannot compute length"
2475+
msgstr ""
2476+
24732477
#: py/modbuiltins.c
24742478
msgid "arg is an empty sequence"
24752479
msgstr ""
@@ -2642,6 +2646,10 @@ msgstr ""
26422646
msgid "can only have up to 4 parameters to Xtensa assembly"
26432647
msgstr ""
26442648

2649+
#: extmod/ulab/code/ndarray.c
2650+
msgid "can only specify one unknown dimension"
2651+
msgstr ""
2652+
26452653
#: py/objtype.c
26462654
msgid "can't add special method to already-subclassed class"
26472655
msgstr ""
@@ -2793,6 +2801,10 @@ msgstr ""
27932801
msgid "cannot import name %q"
27942802
msgstr ""
27952803

2804+
#: extmod/ulab/code/ndarray.c
2805+
msgid "cannot reshape array"
2806+
msgstr ""
2807+
27962808
#: extmod/moductypes.c
27972809
msgid "cannot unambiguously get sizeof scalar"
27982810
msgstr ""
@@ -3242,10 +3254,6 @@ msgstr ""
32423254
msgid "inline assembler must be a function"
32433255
msgstr ""
32443256

3245-
#: extmod/ulab/code/ndarray.c
3246-
msgid "input and output shapes are not compatible"
3247-
msgstr ""
3248-
32493257
#: extmod/ulab/code/numpy/create.c
32503258
msgid "input argument must be an integer, a tuple, or a list"
32513259
msgstr ""
@@ -3959,7 +3967,7 @@ msgid "set unsupported"
39593967
msgstr ""
39603968

39613969
#: extmod/ulab/code/ndarray.c
3962-
msgid "shape must be a tuple"
3970+
msgid "shape must be integer or tuple of integers"
39633971
msgstr ""
39643972

39653973
#: shared-module/msgpack/__init__.c

ports/atmel-samd/boards/aloriumtech_evo_m51/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ EXTERNAL_FLASH_DEVICES = GD25Q16C
1313
LONGINT_IMPL = MPZ
1414

1515
CIRCUITPY_PS2IO = 1
16+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/circuitbrains_deluxe_m4/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, S25FL064L"
1111
LONGINT_IMPL = MPZ
1212

1313
CIRCUITPY_PS2IO = 1
14+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/datalore_ip_m4/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ CHIP_FAMILY = samd51
99
QSPI_FLASH_FILESYSTEM = 1
1010
EXTERNAL_FLASH_DEVICES = "GD25Q16C, W25Q16JVxQ, W25Q16JVxM"
1111
LONGINT_IMPL = MPZ
12+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/hallowing_m4_express/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ CHIP_FAMILY = samd51
99
QSPI_FLASH_FILESYSTEM = 1
1010
EXTERNAL_FLASH_DEVICES = "GD25Q64C,W25Q64JVxQ"
1111
LONGINT_IMPL = MPZ
12+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/monster_m4sk/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ CHIP_FAMILY = samd51
99
QSPI_FLASH_FILESYSTEM = 1
1010
EXTERNAL_FLASH_DEVICES = "GD25Q64C,W25Q64JVxQ"
1111
LONGINT_IMPL = MPZ
12+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/openbook_m4/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ EXTERNAL_FLASH_DEVICES = GD25Q16C
1111
LONGINT_IMPL = MPZ
1212

1313
CIRCUITPY_KEYPAD = 1
14+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/seeeduino_wio_terminal/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ CHIP_FAMILY = samd51
99
QSPI_FLASH_FILESYSTEM = 1
1010
EXTERNAL_FLASH_DEVICES = "W25Q32JVxQ"
1111
LONGINT_IMPL = MPZ
12+
CIRCUITPY_SYNTHIO = 0

ports/atmel-samd/boards/silicognition-m4-shim/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ CHIP_FAMILY = samd51
99
QSPI_FLASH_FILESYSTEM = 1
1010
EXTERNAL_FLASH_DEVICES = GD25Q16C
1111
LONGINT_IMPL = MPZ
12+
CIRCUITPY_SYNTHIO = 0

0 commit comments

Comments
 (0)