stmhal: Detect disk full condition

modussl
Dave Hylands 2015-05-21 20:16:42 -07:00 committed by Damien George
parent 3cb804de26
commit 968b7dd173
1 changed files with 5 additions and 0 deletions

View File

@ -88,6 +88,11 @@ STATIC mp_uint_t file_obj_write(mp_obj_t self_in, const void *buf, mp_uint_t siz
*errcode = fresult_to_errno_table[res];
return MP_STREAM_ERROR;
}
if (sz_out != size) {
// The FatFS documentation says that this means disk full.
*errcode = ENOSPC;
return MP_STREAM_ERROR;
}
return sz_out;
}