32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
#include "VContSupportedActionsQuery.hpp"
|
|
|
|
#include "src/DebugServer/Gdb/ResponsePackets/ResponsePacket.hpp"
|
|
|
|
#include "src/Logger/Logger.hpp"
|
|
|
|
namespace DebugServer::Gdb::AvrGdb::CommandPackets
|
|
{
|
|
using Services::TargetControllerService;
|
|
|
|
VContSupportedActionsQuery::VContSupportedActionsQuery(const RawPacket& rawPacket)
|
|
: Gdb::CommandPackets::CommandPacket(rawPacket)
|
|
{}
|
|
|
|
void VContSupportedActionsQuery::handle(
|
|
DebugSession& debugSession,
|
|
const AvrGdbTargetDescriptor& gdbTargetDescriptor,
|
|
const Targets::TargetDescriptor& targetDescriptor,
|
|
TargetControllerService& targetControllerService
|
|
) {
|
|
Logger::info("Handling VContSupportedActionsQuery packet");
|
|
|
|
// Respond with a SupportedFeaturesResponse packet, listing all supported GDB features by Bloom
|
|
debugSession.connection.writePacket(ResponsePackets::ResponsePacket{
|
|
debugSession.serverConfig.rangeStepping
|
|
? "vCont;c;C;s;S;r"
|
|
: "vCont;c;C;s;S"
|
|
}
|
|
);
|
|
}
|
|
}
|