Corrected bug with FUSES memory segment extraction from AVR8 TDFs

This commit is contained in:
Nav
2021-06-28 21:59:47 +01:00
parent 8fd1781272
commit cfd8326b6e

View File

@@ -332,7 +332,7 @@ std::optional<MemorySegment> TargetDescriptionFile::getFuseMemorySegment() const
if (dataAddressSpace.memorySegmentsByTypeAndName.contains(MemorySegmentType::FUSES)) {
return dataAddressSpace.memorySegmentsByTypeAndName.at(
MemorySegmentType::SIGNATURES
MemorySegmentType::FUSES
).begin()->second;
}
}