From: Xiaofan C. <xia...@gm...> - 2021-07-22 02:48:56
|
Looks like there are many variants of ST-Link V2, V2-1 and V2 clones. I will not recommend using a ST-Link V2 Clone myself but then your NUCLEO-F072RB should work as it is an official board. One quick suggestion that you can give it a shot. I saw this issue last time with my old desktop. Please use Zadig to install WinUSB driver (not using ST's original WinUSB driver). And then try again. I do not have a Windows 7 PC to test myself. Most of my STM32 boards are using the old ST-Link V1, but I do have the ST-Link V2 standalone and the ST-Link V2_1 with the Nucleo F303ZE board, and all of them work fine under my Windows 10 laptop, without using Zadig. ST-Link variants. https://github.com/ntfreak/openocd/blob/master/src/jtag/drivers/stlink_usb.c #define STLINK_V1_PID (0x3744) #define STLINK_V2_PID (0x3748) #define STLINK_V2_1_PID (0x374B) #define STLINK_V2_1_NO_MSD_PID (0x3752) #define STLINK_V3_USBLOADER_PID (0x374D) #define STLINK_V3E_PID (0x374E) #define STLINK_V3S_PID (0x374F) #define STLINK_V3_2VCP_PID (0x3753) -- Xiaofan |