We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1a840 commit d4bbf71Copy full SHA for d4bbf71
arduino-core/src/cc/arduino/packages/BoardPort.java
@@ -144,6 +144,16 @@ public boolean matchesBoard(TargetBoard board) {
144
PreferencesMap identificationProps = getIdentificationPrefs();
145
PreferencesMap boardProps = board.getPreferences();
146
147
+ String wildMatcher = identificationProps.get(".");
148
+ if (wildMatcher != null) {
149
+ if (wildMatcher.equals(board.getId())) {
150
+ return true;
151
+ }
152
+ if (wildMatcher.equals(board.getFQBN())) {
153
154
155
156
+
157
// Identification properties are defined in boards.txt with a ".N" suffix
158
// for example:
159
//
0 commit comments