Compare commits

..

2 Commits

Author SHA1 Message Date
Francesco Valla 6a427b2ea1
Merge 31d4a750d8 into 6cda765fe0 2026-02-11 23:47:45 +00:00
Max Brombach 6cda765fe0 Device: FIRE2: Skip flashing Core chip when chip variant is unknown 2026-02-10 21:20:47 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public:
.add<FlashPhase>(ChipID::neoVIFIRE2_MCHIP, BootloaderCommunication::RED);
if(chipVariant == CoreChipVariant::Core_SG4) {
pipeline.add<FlashPhase>(ChipID::neoVIFIRE2_Core_SG4, BootloaderCommunication::REDCore, false, false);
} else {
} else if(chipVariant == CoreChipVariant::Core) {
pipeline.add<FlashPhase>(ChipID::neoVIFIRE2_Core, BootloaderCommunication::REDCore, false, false);
}
pipeline.add<FlashPhase>(ChipID::neoVIFIRE2_ZYNQ, BootloaderCommunication::RED, false, false)