4e25a4f6b3
Doing a squash merge to avoid having the `slc_cli_linux` .zip files in the history. They were added in one commit and removed and replaced with a submodule in another. * Initial commit for xg24 * Fix SLC issue * Fix SLC extract fail * Change board's name * Correct spelling of code Build immediately after slc generate * Remove VID and PID * Change creator and creation id * Apply new creator_id and creation_id * Update makefile, error message, mcu_processor function * Update mpconfigboard.mk * Update Board extensions, PORT_DEPS * Update makefile * Add exclude_patterns * Show java, jinja2 version * Show path for debugging CI * Add requirements-dev for slc * Add PATH slc_cli * Update background function * Add jinja2 PATH * Show PATH * Update jinja2 path * Update jinja2 path * Update jinja2 path * Update jinja2 path * Change slc folder * Change markupsafe folder * Add symbolic link for slc * Update makefile * Update makefile * Update MX25R3235F.toml from submodule nvm.toml * alphabetize the list * Remove slc_cli_linux folder * Update slc_cli submodule --------- Co-authored-by: Chat Nguyen <cvnguyen@silabs.com> Co-authored-by: silabs-ChatNguyen <chat.nguyen@silabs.com> Co-authored-by: silabs-ChatNguyen <126220343+silabs-ChatNguyen@users.noreply.github.com>
38 lines
963 B
Makefile
38 lines
963 B
Makefile
LONGINT_IMPL ?= MPZ
|
|
INTERNAL_LIBM ?= 1
|
|
USB_NUM_ENDPOINT_PAIRS ?= 0
|
|
|
|
CIRCUITPY_ANALOGIO ?= 1
|
|
CIRCUITPY_BLEIO ?= 1
|
|
CIRCUITPY_BUSDEVICE ?= 1
|
|
CIRCUITPY_BUSIO ?= 1
|
|
CIRCUITPY_DIGITALIO ?= 1
|
|
CIRCUITPY_DISPLAYIO ?= 1
|
|
CIRCUITPY_FRAMEBUFFERIO ?= 1
|
|
CIRCUITPY_NVM ?= 1
|
|
CIRCUITPY_PWMIO ?= 1
|
|
CIRCUITPY_RTC ?= 1
|
|
CIRCUITPY_WATCHDOG ?=1
|
|
|
|
ifeq ($(MCU_SERIES),MG24)
|
|
# Not yet implemented common-hal modules:
|
|
CIRCUITPY_AUDIOIO ?= 0
|
|
CIRCUITPY_AUDIOCORE ?= 0
|
|
CIRCUITPY_AUDIOPWMIO ?= 0
|
|
CIRCUITPY_AUDIOBUSIO ?= 0
|
|
CIRCUITPY_BITBANGIO ?= 0
|
|
CIRCUITPY_BLEIO_HCI ?= 0
|
|
CIRCUITPY_COUNTIO ?= 0
|
|
CIRCUITPY_FREQUENCYIO ?= 0
|
|
CIRCUITPY_I2CTARGET ?= 0
|
|
CIRCUITPY_KEYPAD ?= 0
|
|
CIRCUITPY_NEOPIXEL_WRITE ?= 0
|
|
CIRCUITPY_PARALLELDISPLAY ?= 0
|
|
CIRCUITPY_PULSEIO ?= 0
|
|
CIRCUITPY_ROTARYIO ?= 0
|
|
CIRCUITPY_TOUCHIO ?= 0
|
|
CIRCUITPY_USB ?= 0
|
|
endif
|
|
|
|
CIRCUITPY_BUILD_EXTENSIONS ?= bin
|