Error: Device communication timed out. Try unplugging & replugging the device.
To solve the problem I must change the code from
var timeoutId = setTimeout(function () {
deferred.reject(new Error(message || "Timed out after " + ms + " ms"));
}, ms);
deferred.reject(new Error(message || "Timed out after " + ms + " ms"));
}, ms);
to:
var timeoutId = setTimeout(function () {
deferred.reject(new Error(message || "Timed out after " + ms + " ms"));
}, 10000000);
I found the solution in this post.
Nenhum comentário:
Postar um comentário