|
|
@@ -201,7 +201,7 @@ int qoi_dec(qoi_info_t *info)
|
|
|
xQueueReset(qoi->complete);
|
|
|
qoi_enable(qoi);
|
|
|
|
|
|
- if (xQueueReceive(qoi->complete, &int_status, pdMS_TO_TICKS(100)) == pdTRUE) {
|
|
|
+ if (xQueueReceive(qoi->complete, &int_status, pdMS_TO_TICKS(30)) == pdTRUE) {
|
|
|
if (int_status & BRESP_ERROR_INT)
|
|
|
printf("ERR: %s QOI DEC BRESP ERROR\n", __func__);
|
|
|
|
|
|
@@ -213,8 +213,6 @@ int qoi_dec(qoi_info_t *info)
|
|
|
info->dec_height = readl(qoi->base + DEC_HEIGHT_RD_REG);
|
|
|
ret = 0;
|
|
|
}
|
|
|
- } else {
|
|
|
- printf("ERR: %s QOI DEC TIMEOUT\n", __func__);
|
|
|
}
|
|
|
qoi_disable(qoi);
|
|
|
|