1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 04:15:26 +03:00

Less traces!

This commit is contained in:
Bertrand Songis 2016-02-28 18:38:31 +01:00
parent cefc78dbe8
commit 946fda5705

View file

@ -434,10 +434,8 @@ int stbc_read(void *user, char *data, int size)
UINT br = 0;
FRESULT res = f_read(fp, data, size, &br);
if (res == FR_OK) {
TRACE("sr %d", (int)br);
return (int)br;
}
TRACE("sr NULL");
return 0;
}
@ -445,7 +443,6 @@ int stbc_read(void *user, char *data, int size)
void stbc_skip(void *user, int n)
{
FIL * fp = (FIL *)user;
TRACE("ss %d", n);
f_lseek(fp, f_tell(fp) + n);
}
@ -454,7 +451,6 @@ int stbc_eof(void *user)
{
FIL * fp = (FIL *)user;
int res = f_eof(fp);
TRACE("se %d", res);
return res;
}