Began implementation of WCH-Link protocol, for the WCH-LinkE debug tool.

Foundations have been laid.
This commit is contained in:
Nav
2023-11-18 22:58:48 +00:00
parent 210552de4f
commit 221d931add
15 changed files with 445 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <cstdint>
namespace DebugToolDrivers::Wch
{
enum class WchLinkVariant: std::uint8_t
{
LINK_CH549,
LINK_E_CH32V307,
LINK_S_CH32V203,
UNKNOWN,
};
}