8000 Merge eboot changes from davisonja by Androbin · Pull Request #6533 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Merge eboot changes from davisonja #6533

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 13 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Test
  • Loading branch information
davisonja committed Jan 4, 2017
commit 535bc783613763b169796fe60b227ae76c2ee71e
3 changes: 3 additions & 0 deletions bootloaders/eboot/eboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ int find_app_start(const uint32_t flash_addr)
}
count += 1;
} while ((image_header.magic != 0xe9) && (count < 4));
if (count >= 4) {
return 0;
}
return pos;
}

Expand Down
0