- Removed outdated comments in Microchip device header files

- Other bits of tidying
This commit is contained in:
Nav
2025-08-17 23:08:19 +01:00
parent f0dbe41d73
commit cc5562c1b5
13 changed files with 58 additions and 133 deletions

View File

@@ -7,21 +7,14 @@
namespace DebugToolDrivers::Microchip
{
/**
* The Xplained Pro is an evaluation board featuring an on-board debugger. The debugger is EDBG-based.
*
* USB:
* Vendor ID: 0x03eb (1003)
* Product ID: 0x2111 (8465)
*/
class XplainedPro: public EdbgDevice
{
public:
static const inline std::uint16_t USB_VENDOR_ID = 0x03eb;
static const inline std::uint16_t USB_PRODUCT_ID = 0x2111;
static const inline std::uint8_t CMSIS_HID_INTERFACE_NUMBER = 0;
static constexpr std::uint16_t USB_VENDOR_ID = 0x03eb;
static constexpr std::uint16_t USB_PRODUCT_ID = 0x2111;
static constexpr std::uint8_t CMSIS_HID_INTERFACE_NUMBER = 0;
XplainedPro(const DebugToolConfig& debugToolConfig);
explicit XplainedPro(const DebugToolConfig& debugToolConfig);
std::string getName() override {
return "Xplained Pro";