Skip to content

Commit

Permalink
Add Faultier PID
Browse files Browse the repository at this point in the history
  • Loading branch information
nezza committed Aug 27, 2024
1 parent 61946ab commit c25bfe2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/jtag/drivers/tamarin.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ struct tamarin_cmd_hdr_enc {

#define VID 0x2B3E /* Raspberry Pi */
#define PID 0x0004 /* Picoprobe */
#define PID2 0x2343 /* Faultier */

#define BULK_EP_OUT 4
#define BULK_EP_IN 5
Expand Down Expand Up @@ -480,7 +481,7 @@ struct adapter_driver tamarin_adapter_driver = {
static int tamarin_usb_open(void)
{
const uint16_t vids[] = { VID, 0 };
const uint16_t pids[] = { PID, 0 };
const uint16_t pids[] = { PID, PID2, 0 };

if (jtag_libusb_open(vids, pids,
&tamarin_handle->usb_handle, NULL) != ERROR_OK) {
Expand Down

0 comments on commit c25bfe2

Please sign in to comment.