diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/CmsisDapInterface.cpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/CmsisDapInterface.cpp index 84ff5bb8..05999986 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/CmsisDapInterface.cpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/CmsisDapInterface.cpp @@ -27,7 +27,7 @@ void CmsisDapInterface::sendCommand(const Command& cmsisDapCommand) { } std::unique_ptr CmsisDapInterface::getResponse() { - auto rawResponse = this->getUsbHidInterface().read(5000); + auto rawResponse = this->getUsbHidInterface().read(10000); if (rawResponse.size() == 0) { throw Exception("Empty CMSIS-DAP response received");