8000 shrink pygamer and pybadge · brushmate/circuitpython@9d8eebc · GitHub
[go: up one dir, main page]

Skip to content

Commit 9d8eebc

Browse files
committed
shrink pygamer and pybadge
1 parent e97ac18 commit 9d8eebc

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ CIRCUITPY_AESIO = 0
1414
CIRCUITPY_FLOPPYIO = 0
1515
CIRCUITPY_FRAMEBUFFERIO = 0
1616
CIRCUITPY_GIFIO = 0
17+
CIRCUITPY_I2CDISPLAYBUS = 0
1718
CIRCUITPY_JPEGIO = 0
1819
CIRCUITPY_KEYPAD = 1
20+
CIRCUITPY_PARALLELDISPLAYBUS= 0
1921
CIRCUITPY_STAGE = 1
2022

2123
FROZEN_MPY_DIRS += $(TOP)/frozen/circuitpython-stage/pybadge

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ CIRCUITPY_AESIO = 0
1414
CIRCUITPY_FLOPPYIO = 0
1515
CIRCUITPY_FRAMEBUFFERIO = 0
1616
CIRCUITPY_GIFIO = 0
17+
CIRCUITPY_I2CDISPLAYBUS = 0
1718
CIRCUITPY_JPEGIO = 0
1819
CIRCUITPY_KEYPAD = 1
20+
CIRCUITPY_PARALLELDISPLAYBUS= 0
1921
CIRCUITPY_STAGE = 1
2022

2123
FROZEN_MPY_DIRS += $(TOP)/frozen/circuitpython-stage/pygamer

shared-bindings/usb_midi/__init__.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ static void set_name(mp_obj_t name_obj, qstr arg_name_qstr, char **custom_name_p
105105
//| ) -> None:
106106
//| """Override the MIDI interface names in the USB Interface Descriptor.
107107
//|
108-
//| ``streaming_interface_name`` must be an ASCII string (or buffer) of at most 126 characters.
109-
//| ``audio_control_interface_name`` must be an ASCII string (or buffer) of at most 126 characters.
110-
//| ``in_jack_name`` must be an ASCII string (or buffer) of at most 126 characters.
111-
//| ``out_jack_name`` must be an ASCII string (or buffer) of at most 126 characters.
108+
//| :param Optional[str] streaming_interface_name: an ASCII string (or buffer) of at most 126 characters, or ``None`` to use the default name.
109+
//| :param Optional[str] audio_control_interface_name: an ASCII string (or buffer) of at most 126 characters, or ``None`` to use the default name.
110+
//| :param Optional[str] in_jack_name: an ASCII string (or buffer) of at most 126 characters, or ``None`` to use the default name.
111+
//| :param Optional[str] out_jack_name: an ASCII string (or buffer) of at most 126 characters, or ``None`` to use the default name.
112112
//|
113113
//| This method must be called in boot.py to have any effect.
114114
//|

0 commit comments

Comments
 (0)
0