stopping watchdog during find_file

This commit is contained in:
fros4943 2010-03-29 11:31:35 +00:00
parent f228272cfc
commit b952f97799

View File

@ -460,12 +460,15 @@ find_file(const char *name)
}
/* Scan the flash memory sequentially otherwise. */
COFFEE_WATCHDOG_STOP();
for(page = 0; page < COFFEE_PAGE_COUNT; page = next_file(page, &hdr)) {
read_header(&hdr, page);
if(HDR_ACTIVE(hdr) && !HDR_LOG(hdr) && strcmp(name, hdr.name) == 0) {
COFFEE_WATCHDOG_START();
return load_file(page, &hdr);
}
}
COFFEE_WATCHDOG_START();
return NULL;
}