Skip to content

Commit ebacd41

Browse files
committed
Give the chance to flash any firmware if board not recognized
Fixes #34
1 parent ebce440 commit ebacd41

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/cc/arduino/plugins/wifi101/UpdaterImpl.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,9 @@ protected void SelectBoardModule() {
129129
}
130130
}
131131
if (added == 0) {
132+
// Board not automatically recognized, give the chance to flash any firmware
132133
for (Flasher firmware : fwAvailable) {
133-
if (firmware.isCompatible("Arduino WiFi 101 Shield")) {
134-
getFirmwareSelector().addItem(firmware);
135-
}
134+
getFirmwareSelector().addItem(firmware);
136135
}
137136
}
138137
Flasher fw = (Flasher) getFirmwareSelector().getSelectedItem();

0 commit comments

Comments
 (0)