remove obsolete chunk of code

10.3.x-maintenance
cTn 2014-06-10 00:04:30 +02:00
parent 7d3a29c0b7
commit 1fb060e0fa
1 changed files with 2 additions and 20 deletions

View File

@ -374,26 +374,8 @@ STM32DFU_protocol.prototype.upload_procedure = function(step) {
setTimeout(function() {
if (data[4] != self.state.dfuUPLOAD_IDLE) {
self.controlTransfer('out', self.request.DNLOAD, 0, 0, 0, [0x21, address, (address >> 8), (address >> 16), (address >> 24)], function(result) { // problem on this call !!
self.controlTransfer('in', self.request.GETSTATUS, 0, 0, 6, 0, function(data) {
if (data[4] == self.state.dfuDNBUSY) {
var delay = data[1] | (data[2] << 8) | (data[3] << 16);
setTimeout(function() {
self.controlTransfer('in', self.request.GETSTATUS, 0, 0, 6, 0, function(data) {
if (data[4] == self.state.dfuDNLOAD_IDLE) {
self.loadAddress(address, function() {
clear_status();
} else {
console.log(data);
}
});
}, delay);
} else if (data[4] == self.state.dfuUPLOAD_IDLE) {
read();
} else {
console.log(data);
}
});
});
} else {
clear_status(function() {