47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
#include "src/DebugToolDrivers/Microchip/EdbgDevice.hpp"
|
|
|
|
namespace DebugToolDrivers::Microchip
|
|
{
|
|
/**
|
|
* The MPLAB Snap device is a hybrid device - that is, it can present itself as an "MPLAB Snap ICD" device, as well
|
|
* as an EDBG (Embedded Debugger) device. The device switches between these two modes via firmware configuration.
|
|
* It appears that it can only interface with AVR targets using the EDBG firmware, which, apparently, is why it is
|
|
* known to be in "AVR mode" when it presents itself as an EDBG device.
|
|
*
|
|
* This debug tool driver currently only supports the device when in AVR mode. Because the device uses different
|
|
* USB vendor and product IDs depending on the mode, it is trivial to determine which is which. In fact, Bloom will
|
|
* not even recognise the device if it's not in AVR mode.
|
|
*
|
|
* USB (when in AVR/EDBG mode):
|
|
* Vendor ID: 0x03eb (1003)
|
|
* Product ID: 0x2180 (8576)
|
|
*/
|
|
class MplabSnap: public EdbgDevice
|
|
{
|
|
public:
|
|
static const inline std::uint16_t USB_VENDOR_ID = 0x03eb;
|
|
static const inline std::uint16_t USB_PRODUCT_ID = 0x2180;
|
|
static const inline std::uint8_t CMSIS_HID_INTERFACE_NUMBER = 0;
|
|
|
|
static const inline std::uint16_t PIC_MODE_USB_VENDOR_ID = 0x04d8;
|
|
static const inline std::uint16_t PIC_MODE_USB_PRODUCT_ID = 0x9018;
|
|
static const inline std::uint16_t BL_MODE_USB_PRODUCT_ID = 0x9019;
|
|
|
|
MplabSnap(const DebugToolConfig& debugToolConfig);
|
|
|
|
std::string getName() override {
|
|
return "MPLAB Snap";
|
|
}
|
|
|
|
void init() override;
|
|
|
|
protected:
|
|
void configureAvr8Interface() override;
|
|
};
|
|
}
|