@@ -59,9 +59,7 @@ const BUILD_PROPERTIES_TOOLS_KEY = "tools"
59
59
const BUILD_PROPERTIES_VID = "vid"
60
60
const CTAGS = "ctags"
61
61
const EMPTY_STRING = ""
62
- const FILE_BUILTIN_TOOLS_VERSIONS_TXT = "builtin_tools_versions.txt"
63
62
const FILE_CTAGS_TARGET_FOR_GCC_MINUS_E = "ctags_target_for_gcc_minus_e.cpp"
64
- const FILE_GCC_PREPROC_TARGET = "gcc_preproc_target.cpp"
65
63
const FILE_PLATFORM_KEYS_REWRITE_TXT = "platform.keys.rewrite.txt"
66
64
const FILE_INCLUDES_CACHE = "includes.cache"
67
65
const FOLDER_BOOTLOADERS = "bootloaders"
@@ -128,7 +126,6 @@ const MSG_BUILD_OPTIONS_CHANGED = "Build options changed, rebuilding all"
128
126
const MSG_CANT_FIND_SKETCH_IN_PATH = "Unable to find {0} in {1}"
129
127
const MSG_FQBN_INVALID = "{0} is not a valid fully qualified board name. Required format is targetPackageName:targetPlatformName:targetBoardName."
130
128
const MSG_INVALID_QUOTING = "Invalid quoting: no closing [{0}] char found."
131
- const MSG_IGNORED_BUILTIN_TOOLS_TXT = "Skipping {0}; please consider removing that file since it may hurt older Arduino installations"
132
129
const MSG_LIB_LEGACY = "(legacy)"
133
130
const MSG_LIBRARIES_MULTIPLE_LIBS_FOUND_FOR = "Multiple libraries were found for \" {0}\" "
134
131
const MSG_LIBRARIES_NOT_USED = " Not used: {0}"
@@ -138,7 +135,6 @@ const MSG_LIBRARY_INCOMPATIBLE_ARCH = "WARNING: library {0} claims to run on {1}
138
135
const MSG_LOOKING_FOR_RECIPES = "Looking for recipes like {0}*{1}"
139
136
const MSG_MISSING_BUILD_BOARD = "Warning: Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: {3}"
140
137
const MSG_MISSING_CORE_FOR_BOARD = "Selected board depends on '{0}' core (not installed)."
141
- const MSG_MUST_BE_A_FOLDER = "{0} must be a folder"
142
138
const MSG_PACKAGE_UNKNOWN = "{0}: Unknown package"
143
139
const MSG_PATTERN_MISSING = "{0} pattern is missing"
144
140
const MSG_PLATFORM_UNKNOWN = "Platform {0} (package {1}) is unknown"
@@ -155,10 +151,6 @@ const MSG_SIZER_DATA_TOO_BIG = "Not enough memory; see http://www.arduino.cc/en/
155
151
const MSG_SIZER_LOW_MEMORY = "Low memory available, stability problems may occur."
156
152
const MSG_SIZER_ERROR_NO_RULE = "Couldn't determine program size"
157
153
const MSG_SKETCH_CANT_BE_IN_BUILDPATH = "Sketch cannot be located in build path. Please specify a different build path"
158
- const MSG_SKIPPING_TAG_ALREADY_DEFINED = "Skipping tag {0} because prototype is already defined"
159
- const MSG_SKIPPING_TAG_BECAUSE_HAS_FIELD = "Skipping tag {0} because it has field {0}"
160
- const MSG_SKIPPING_TAG_WITH_REASON = "Skipping tag {0}. Reason: {1}"
161
- const MSG_UNHANDLED_TYPE_IN_CONTEXT = "Unhandled type {0} in context key {1}"
162
154
const MSG_UNKNOWN_SKETCH_EXT = "Unknown sketch file extension: {0}"
163
155
const MSG_USING_LIBRARY_AT_VERSION = "Using library {0} at version {1} in folder: {2} {3}"
164
156
const MSG_USING_LIBRARY = "Using library {0} in folder: {1} {2}"
@@ -167,30 +159,24 @@ const MSG_USING_CORE = "Using core '{0}' from platform in folder: {1}"
167
159
const MSG_USING_PREVIOUS_COMPILED_FILE = "Using previously compiled file: {0}"
168
160
const MSG_USING_CACHED_INCLUDES = "Using cached library dependencies for file: {0}"
169
161
const MSG_WARNING_LIB_INVALID_CATEGORY = "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'"
170
- const MSG_WARNING_PLATFORM_MISSING_VALUE = "Warning: platform.txt from core '{0}' misses property '{1}', using default value '{2}'. Consider upgrading this core."
171
162
const MSG_WARNING_PLATFORM_OLD_VALUES = "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core."
172
163
const MSG_WARNING_SPURIOUS_FILE_IN_LIB = "WARNING: Spurious {0} folder in '{1}' library"
173
- const MSG_WRONG_PROPERTIES_FILE = "Property line '{0}' in file {1} is invalid"
174
- const MSG_WRONG_PROPERTIES = "Property line '{0}' is invalid"
175
164
const PACKAGE_NAME = "name"
176
165
const PACKAGE_TOOLS = "tools"
177
166
const PLATFORM_ARCHITECTURE = "architecture"
178
167
const PLATFORM_NAME = "name"
179
- const PLATFORM_REWRITE_ADDED = "added"
180
168
const PLATFORM_REWRITE_NEW = "new"
181
169
const PLATFORM_REWRITE_OLD = "old"
182
170
const PLATFORM_URL = "url"
183
171
const PLATFORM_VERSION = "version"
184
172
const PROPERTY_WARN_DATA_PERCENT = "build.warn_data_percentage"
185
173
const PROPERTY_UPLOAD_MAX_SIZE = "upload.maximum_size"
186
174
const PROPERTY_UPLOAD_MAX_DATA_SIZE = "upload.maximum_data_size"
187
- const PROGRAMMER_NAME = "name"
188
175
const RECIPE_AR_PATTERN = "recipe.ar.pattern"
189
176
const RECIPE_C_COMBINE_PATTERN = "recipe.c.combine.pattern"
190
177
const RECIPE_C_PATTERN = "recipe.c.o.pattern"
191
178
const RECIPE_CPP_PATTERN = "recipe.cpp.o.pattern"
192
179
const RECIPE_SIZE_PATTERN = "recipe.size.pattern"
193
- const RECIPE_PREPROC_INCLUDES = "recipe.preproc.includes"
194
180
const RECIPE_PREPROC_MACROS = "recipe.preproc.macros"
195
181
const RECIPE_S_PATTERN = "recipe.S.o.pattern"
196
182
const RECIPE_SIZE_REGEXP = "recipe.size.regex"
0 commit comments