Passing address of char_written at f_write

This commit is contained in:
Ayan Pahwa 2019-11-23 20:47:30 +05:30
parent 5823f5ed04
commit 262cfd4ea3
1 changed files with 2 additions and 2 deletions

View File

@ -72,12 +72,12 @@ static void make_empty_file(FATFS *fatfs, const char *path) {
static void make_sample_code_file(FATFS *fatfs) {
FIL fs;
UINT *char_written = 0;
UINT char_written = 0;
const byte buffer[] = "print('Hello World!')\n";
//Create or modify existing code.py file
f_open(fatfs, &fs, "/code.py", FA_WRITE | FA_CREATE_ALWAYS);
f_write(&fs, buffer, sizeof(buffer) - 1, char_written);
f_write(&fs, buffer, sizeof(buffer) - 1, &char_written);
f_close(&fs);
}