Finalement ce que j'avais fait ne marchait pas du coup j'ai regardé ton lien qui m'a aidé mais de fil en aiguille j'ai trouvé une solution encore plus simple avec la fonction SetupDiGetDeviceRegistryProperty (en recherchant directement le vendor et product id du périphérique) et après y'a plus qu'a installer les drivers si TegraRcmSmash ne reconnait pas le mode RCM . Merci
BOOL CTegraRcmGUIDlg::LookForAPXDevice() { unsigned index; HDEVINFO hDevInfo; SP_DEVINFO_DATA DeviceInfoData; TCHAR HardwareID[1024]; // List all connected USB devices hDevInfo = SetupDiGetClassDevs(NULL, TEXT("USB"), NULL, DIGCF_PRESENT | DIGCF_ALLCLASSES); for (index = 0; ; index++) { DeviceInfoData.cbSize = sizeof(DeviceInfoData); if (!SetupDiEnumDeviceInfo(hDevInfo, index, &DeviceInfoData)) { return FALSE; // no match } SetupDiGetDeviceRegistryProperty(hDevInfo, &DeviceInfoData, SPDRP_HARDWAREID, NULL, (BYTE*)HardwareID, sizeof(HardwareID), NULL); if (_tcsstr(HardwareID, _T("VID_0955&PID_7321"))) { return TRUE; // match } } return FALSE; }
J'arrive un peu tard, mais ravi d'avoir pu te donner une piste ! Ca a l'air bien fiable maintenant
- eliboa aime ceci