Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp fix to limit FW size that mess with BOOT_LOADER_EXE #180

Merged
merged 1 commit into from
Feb 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Firmware/ChameleonMini/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ PYTHON_BIN = /usr/bin/env python3
CRYPTO_TOOL = ../../Software/Tools/crypt_operations.py

#Supported configurations
#WARNING. If you flash from Windows original tools, choose either CLASSIC OR ULTRALIGHT
#BOTH will produce a firmware that is too big for BOOT_LOADER_EXE to handle
SETTINGS += -DCONFIG_MF_CLASSIC_SUPPORT
SETTINGS += -DCONFIG_MF_ULTRALIGHT_SUPPORT
#SETTINGS += -DCONFIG_MF_ULTRALIGHT_SUPPORT
SETTINGS += -DCONFIG_MF_CLASSIC_DETECTION_SUPPORT
#SETTINGS += -DCONFIG_MF_CLASSIC_BRUTE_SUPPORT
#SETTINGS += -DCONFIG_MF_CLASSIC_LOG_SUPPORT
Expand All @@ -29,8 +31,9 @@ SETTINGS += -DCONFIG_MF_CLASSIC_DETECTION_SUPPORT
SETTINGS += -DSUPPORT_FIRMWARE_UPGRADE

#Enable the MEMORYTEST and/or MEMORYINFO commands to help with memory management debug
SETTINGS += -DCONFIG_DEBUG_MEMORYTEST_COMMAND
SETTINGS += -DCONFIG_DEBUG_MEMORYINFO_COMMAND
#REQUIRES enabling CONFIG_MF_CLASSIC_SUPPORT and CONFIG_MF_CLASSIC_DETECTION_SUPPORT
#SETTINGS += -DCONFIG_DEBUG_MEMORYTEST_COMMAND
#SETTINGS += -DCONFIG_DEBUG_MEMORYINFO_COMMAND

#Default configuration
SETTINGS += -DDEFAULT_CONFIGURATION=CONFIG_NONE
Expand Down