2023-11-26 00:41:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
2025-01-07 23:31:48 +00:00
|
|
|
#include "src/DebugToolDrivers/Wch/Protocols/WchLink/Commands/Command.hpp"
|
2023-11-26 00:41:45 +00:00
|
|
|
|
|
|
|
|
namespace DebugToolDrivers::Wch::Protocols::WchLink::Commands::Control
|
|
|
|
|
{
|
|
|
|
|
class DetachTarget: public Command<std::array<unsigned char, 1>>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DetachTarget()
|
|
|
|
|
: Command(0x0d)
|
|
|
|
|
{
|
|
|
|
|
this->payload = {
|
|
|
|
|
0xff
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|