Skip to content

Commit 9124529

Browse files
authored
Merge pull request #3659 from iot49/msgpack
module msgpack
2 parents 1fb3d24 + 13efbf2 commit 9124529

File tree

27 files changed

+952
-0
lines changed

27 files changed

+952
-0
lines changed

locale/circuitpython.pot

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,10 @@ msgstr ""
276276
msgid "3-arg pow() not supported"
277277
msgstr ""
278278

279+
#: shared-module/msgpack/__init__.c
280+
msgid "64 bit types"
281+
msgstr ""
282+
279283
#: ports/atmel-samd/common-hal/countio/Counter.c
280284
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
281285
msgid "A hardware interrupt channel is already in use"
@@ -2426,6 +2430,10 @@ msgstr ""
24262430
msgid "circle can only be registered in one parent"
24272431
msgstr ""
24282432

2433+
#: shared-bindings/msgpack/ExtType.c
2434+
msgid "code outside range 0~127"
2435+
msgstr ""
2436+
24292437
#: shared-bindings/displayio/Palette.c
24302438
msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)"
24312439
msgstr ""
@@ -2510,6 +2518,10 @@ msgstr ""
25102518
msgid "default 'except' must be last"
25112519
msgstr ""
25122520

2521+
#: shared-bindings/msgpack/__init__.c
2522+
msgid "default is not a function"
2523+
msgstr ""
2524+
25132525
#: shared-bindings/audiobusio/PDMIn.c
25142526
msgid ""
25152527
"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8"
@@ -2609,6 +2621,10 @@ msgstr ""
26092621
msgid "expecting key:value for dict"
26102622
msgstr ""
26112623

2624+
#: shared-bindings/msgpack/__init__.c
2625+
msgid "ext_hook is not a function"
2626+
msgstr ""
2627+
26122628
#: py/argcheck.c
26132629
msgid "extra keyword arguments given"
26142630
msgstr ""
@@ -3141,6 +3157,10 @@ msgstr ""
31413157
msgid "no binding for nonlocal found"
31423158
msgstr ""
31433159

3160+
#: shared-module/msgpack/__init__.c
3161+
msgid "no default packer"
3162+
msgstr ""
3163+
31443164
#: py/builtinimport.c
31453165
msgid "no module named '%q'"
31463166
msgstr ""
@@ -3474,6 +3494,10 @@ msgstr ""
34743494
msgid "shape must be a tuple"
34753495
msgstr ""
34763496

3497+
#: shared-module/msgpack/__init__.c
3498+
msgid "short read"
3499+
msgstr ""
3500+
34773501
#: py/objstr.c
34783502
msgid "sign not allowed in string format specifier"
34793503
msgstr ""

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ LONGINT_IMPL = MPZ
1414
CIRCUITPY_BITBANGIO = 0
1515
CIRCUITPY_COUNTIO = 0
1616
CIRCUITPY_I2CPERIPHERAL = 0
17+
CIRCUITPY_MSGPACK = 0
1718
CIRCUITPY_VECTORIO = 0
1819
CIRCUITPY_BUSDEVICE = 0
1920

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ LONGINT_IMPL = MPZ
1515
CIRCUITPY_DISPLAYIO = 0
1616
CIRCUITPY_FREQUENCYIO = 0
1717
CIRCUITPY_I2CPERIPHERAL = 0
18+
CIRCUITPY_MSGPACK = 0
1819
MICROPY_PY_ASYNC_AWAIT = 0
1920

2021
SUPEROPT_GC = 0

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ CIRCUITPY_BITBANGIO = 0
1616
CIRCUITPY_DISPLAYIO = 0
1717
CIRCUITPY_FREQUENCYIO = 0
1818
CIRCUITPY_I2CPERIPHERAL = 0
19+
CIRCUITPY_MSGPACK = 0
1920
CIRCUITPY_PIXELBUF = 1
2021
CIRCUITPY_ROTARYIO = 0
2122
CIRCUITPY_RTC = 0

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ CIRCUITPY_BITBANGIO = 0
1616
CIRCUITPY_COUNTIO = 0
1717
CIRCUITPY_FREQUENCYIO = 0
1818
CIRCUITPY_I2CPERIPHERAL = 0
19+
CIRCUITPY_MSGPACK = 0
1920
CIRCUITPY_PIXELBUF = 0
2021
CIRCUITPY_ROTARYIO = 0
2122
CIRCUITPY_RTC = 0

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ CIRCUITPY_BITBANGIO = 0
1515
CIRCUITPY_FREQUENCYIO = 0
1616
CIRCUITPY_COUNTIO = 0
1717
CIRCUITPY_I2CPERIPHERAL = 0
18+
CIRCUITPY_MSGPACK = 0
1819
CIRCUITPY_VECTORIO = 0
1920
CIRCUITPY_BUSDEVICE = 0
2021

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ CIRCUITPY_FREQUENCYIO = 0
1818
CIRCUITPY_I2CPERIPHERAL = 0
1919
CIRCUITPY_GAMEPAD = 0
2020
CFLAGS_INLINE_LIMIT = 50
21+
CIRCUITPY_MSGPACK = 0
2122

2223
# Include these Python libraries in firmware.
2324
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ CIRCUITPY_BITBANGIO = 0
1515
CIRCUITPY_FREQUENCYIO = 0
1616
CIRCUITPY_COUNTIO = 0
1717
CIRCUITPY_I2CPERIPHERAL = 0
18+
CIRCUITPY_MSGPACK = 0
1819
# supersized, not ultra-supersized
1920
CIRCUITPY_VECTORIO = 0
2021
CIRCUITPY_BUSDEVICE = 0

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ LONGINT_IMPL = MPZ
1414
CIRCUITPY_BITBANGIO = 0
1515
CIRCUITPY_COUNTIO = 0
1616
CIRCUITPY_I2CPERIPHERAL = 0
17+
CIRCUITPY_MSGPACK = 0
1718
CIRCUITPY_VECTORIO = 0
1819
CIRCUITPY_BUSDEVICE = 0
1920

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ CIRCUITPY_BITBANGIO = 0
1717
CIRCUITPY_COUNTIO = 0
1818
CIRCUITPY_FREQUENCYIO = 0
1919
CIRCUITPY_I2CPERIPHERAL = 0
20+
CIRCUITPY_MSGPACK = 0
2021

2122
SUPEROPT_GC = 0
2223

0 commit comments

Comments
 (0)