diff --git a/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.cpp b/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.cpp index e3bc5b4f..8fe6f1ba 100644 --- a/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.cpp +++ b/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.cpp @@ -75,7 +75,7 @@ namespace Bloom::DebugServer::Gdb::AvrGdb std::set>> AvrGdbRsp::getSupportedFeatures() { auto supportedFeatures = GdbRspDebugServer::getSupportedFeatures(); - // The AVR GDB server supports the + // The AVR GDB server supports the 'qXfer:memory-map:read' GDB command. supportedFeatures.insert({ Feature::MEMORY_MAP_READ, std::nullopt }); diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index de824836..29cc95ef 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -484,7 +484,8 @@ namespace Bloom this->selectedVariant = variant; this->variantMenu->setTitle(QString::fromStdString(variant->name + " (" + variant->packageName + ")")); - if (variant->package == TargetPackage::DIP + if ( + variant->package == TargetPackage::DIP || variant->package == TargetPackage::SOIC || variant->package == TargetPackage::SSOP ) { diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetWidgets/TargetPackageWidget.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetWidgets/TargetPackageWidget.hpp index 4d6345eb..4b9472f1 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetWidgets/TargetPackageWidget.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetWidgets/TargetPackageWidget.hpp @@ -43,7 +43,6 @@ namespace Bloom::Widgets::InsightTargetWidgets Targets::TargetState targetState = Targets::TargetState::UNKNOWN; - protected slots: virtual void updatePinStates(const Targets::TargetPinStateMappingType& pinStatesByNumber); void onTargetStateChanged(Targets::TargetState newState); void onProgrammingModeEnabled();