Skip to content

Commit 7aad223

Browse files
author
Bernhard Boser
committed
disable on boards tight on memory. add stddef.h to imports (not actually needed).
1 parent 5f7962e commit 7aad223

File tree

12 files changed

+13
-0
lines changed

12 files changed

+13
-0
lines changed

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

1920
CFLAGS_INLINE_LIMIT = 60

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

2021
CFLAGS_INLINE_LIMIT = 60

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

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

1920
CFLAGS_INLINE_LIMIT = 60

ports/atmel-samd/boards/snekboard/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_GAMEPAD = 0
1616
CIRCUITPY_I2CPERIPHERAL = 0
17+
CIRCUITPY_MSGPACK = 0
1718
CIRCUITPY_VECTORIO = 0
1819

1920
CFLAGS_INLINE_LIMIT = 60

ports/atmel-samd/boards/sparkfun_redboard_turbo/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_COUNTIO = 0
1616
CIRCUITPY_GAMEPAD = 0
1717
CIRCUITPY_I2CPERIPHERAL = 0
18+
CIRCUITPY_MSGPACK = 0
1819
CIRCUITPY_VECTORIO = 0
1920

2021
CFLAGS_INLINE_LIMIT = 60

ports/cxd56/boards/spresense/mpconfigboard.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ USB_PRODUCT = "Spresense"
44
USB_MANUFACTURER = "Sony"
55

66
INTERNAL_FLASH_FILESYSTEM = 1
7+
8+
CIRCUITPY_MSGPACK = 0

shared-module/msgpack/__init__.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* THE SOFTWARE.
2525
*/
2626

27+
#include <stddef.h>
2728
#include <stdio.h>
2829
#include <inttypes.h>
2930

0 commit comments

Comments
 (0)