mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-21 15:25:36 +03:00
more cleanup
This commit is contained in:
parent
2773919538
commit
cc13ab5760
1 changed files with 17 additions and 19 deletions
|
@ -28,7 +28,6 @@ function read_hex_file(data) {
|
||||||
|
|
||||||
switch (record_type) {
|
switch (record_type) {
|
||||||
case 0x00: // data record
|
case 0x00: // data record
|
||||||
if (byte_count > 0) {
|
|
||||||
var crc = byte_count + parseInt(address.substr(0, 2), 16) + parseInt(address.substr(2, 2), 16) + record_type;
|
var crc = byte_count + parseInt(address.substr(0, 2), 16) + parseInt(address.substr(2, 2), 16) + record_type;
|
||||||
for (var needle = 0; needle < byte_count * 2; needle += 2) {
|
for (var needle = 0; needle < byte_count * 2; needle += 2) {
|
||||||
var num = parseInt(content.substr(needle, 2), 16); // get one byte in hex and convert it to decimal
|
var num = parseInt(content.substr(needle, 2), 16); // get one byte in hex and convert it to decimal
|
||||||
|
@ -49,7 +48,6 @@ function read_hex_file(data) {
|
||||||
// break out of the for loop as crc is wrong anyway, we dont need to process any more data
|
// break out of the for loop as crc is wrong anyway, we dont need to process any more data
|
||||||
i = data.length;
|
i = data.length;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 0x01: // end of file record
|
case 0x01: // end of file record
|
||||||
result.end_of_file = true;
|
result.end_of_file = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue