Increased timeout for waiting for CMSIS responses

This commit is contained in:
Nav
2022-06-05 17:48:30 +01:00
parent 0521b1f986
commit c51e6ee28b

View File

@@ -65,7 +65,7 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap
"CMSIS Response type must be derived from the Response class."
);
const auto rawResponse = this->getUsbHidInterface().read(10000);
const auto rawResponse = this->getUsbHidInterface().read(15000);
if (rawResponse.empty()) {
throw Exceptions::DeviceCommunicationFailure("Empty CMSIS-DAP response received");