Consistent casing in directory names

This commit is contained in:
Nav
2025-01-07 23:31:48 +00:00
parent e98a73e687
commit 2a51f8af75
462 changed files with 486 additions and 486 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include <cstdint>
#include "src/DebugToolDrivers/Wch/Protocols/WchLink/Commands/Command.hpp"
namespace DebugToolDrivers::Wch::Protocols::WchLink::Commands::Control
{
class DetachTarget: public Command<std::array<unsigned char, 1>>
{
public:
DetachTarget()
: Command(0x0d)
{
this->payload = {
0xff
};
}
};
}