- Implemented support for range stepping with GDB (vCont... packets)
- Refactored some bits of the generic GDB server class, along with the AVR-specific implementation
This commit is contained in:
18
src/DebugServer/Gdb/AvrGdb/DebugSession.cpp
Normal file
18
src/DebugServer/Gdb/AvrGdb/DebugSession.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#include "DebugSession.hpp"
|
||||
|
||||
namespace DebugServer::Gdb::AvrGdb
|
||||
{
|
||||
DebugSession::DebugSession(
|
||||
Connection&& connection,
|
||||
const std::set<std::pair<Feature, std::optional<std::string>>>& supportedFeatures,
|
||||
const TargetDescriptor& targetDescriptor,
|
||||
const GdbDebugServerConfig& serverConfig
|
||||
)
|
||||
: Gdb::DebugSession(
|
||||
std::move(connection),
|
||||
supportedFeatures,
|
||||
targetDescriptor,
|
||||
serverConfig
|
||||
)
|
||||
{}
|
||||
}
|
||||
Reference in New Issue
Block a user