aboutsummaryrefslogtreecommitdiff
path: root/sw/tc_eim.c
diff options
context:
space:
mode:
Diffstat (limited to 'sw/tc_eim.c')
-rw-r--r--sw/tc_eim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/tc_eim.c b/sw/tc_eim.c
index c812478..8ef4f06 100644
--- a/sw/tc_eim.c
+++ b/sw/tc_eim.c
@@ -197,12 +197,12 @@ int tc_wait(off_t offset, uint8_t status, int *count)
int tc_wait_ready(off_t offset)
{
- int limit = 256;
+ int limit = 100000000;
return tc_wait(offset, STATUS_READY, &limit);
}
int tc_wait_valid(off_t offset)
{
- int limit = 256;
+ int limit = 100000000;
return tc_wait(offset, STATUS_VALID, &limit);
}