2023-09-10 22:27:10 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
#include "src/DebugServer/Gdb/CommandPackets/CommandPacket.hpp"
|
|
|
|
|
|
|
|
|
|
namespace DebugServer::Gdb::AvrGdb::CommandPackets
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The VContStepExecution class implements a structure for "vCont;s" and "vCont;S" packets.
|
|
|
|
|
*/
|
|
|
|
|
class VContStepExecution: public Gdb::CommandPackets::CommandPacket
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit VContStepExecution(const RawPacket& rawPacket);
|
|
|
|
|
|
|
|
|
|
void handle(
|
|
|
|
|
Gdb::DebugSession& debugSession,
|
2024-07-23 21:14:22 +01:00
|
|
|
const Gdb::TargetDescriptor& gdbTargetDescriptor,
|
|
|
|
|
const Targets::TargetDescriptor& targetDescriptor,
|
2023-09-10 22:27:10 +01:00
|
|
|
Services::TargetControllerService& targetControllerService
|
|
|
|
|
) override;
|
|
|
|
|
};
|
|
|
|
|
}
|