We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feb863d commit be1a840Copy full SHA for be1a840
arduino-core/src/processing/app/debug/LegacyTargetBoard.java
@@ -100,4 +100,8 @@ public TargetPlatform getContainerPlatform() {
100
return containerPlatform;
101
}
102
103
+ @Override
104
+ public String getFQBN() {
105
+ return getContainerPlatform().getContainerPackage().getId() + ":" + getContainerPlatform().getId() + ":" + getId();
106
+ }
107
arduino-core/src/processing/app/debug/TargetBoard.java
@@ -92,4 +92,6 @@ public interface TargetBoard {
92
93
public TargetPlatform getContainerPlatform();
94
95
+ public String getFQBN();
96
+
97
0 commit comments