Files
BloomPatched/src/DebugToolDrivers/WCH/Protocols/WchLink/Commands/EndRamCodeWrite.hpp

21 lines
413 B
C++
Raw Normal View History

#pragma once
#include <cstdint>
#include "src/DebugToolDrivers/WCH/Protocols/WchLink/Commands/Command.hpp"
namespace DebugToolDrivers::Wch::Protocols::WchLink::Commands
{
class EndRamCodeWrite: public Command<std::array<unsigned char, 1>>
{
public:
EndRamCodeWrite()
: Command(0x02)
{
this->payload = {
0x07
};
}
};
}