Skip to content

Commit 9fdc5f6

Browse files
committed
fix: shorten filename to fit in "8.3"
1 parent bc9d7fd commit 9fdc5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ while !my_file.is_eof() {
3939

4040
For writing files:
4141
```rust
42-
let my_other_file = root_dir.open_file_in_dir("FILE2.CSV", embedded_sdmmc::Mode::ReadWriteCreateOrAppend)?;
42+
let my_other_file = root_dir.open_file_in_dir("MY_DATA.CSV", embedded_sdmmc::Mode::ReadWriteCreateOrAppend)?;
4343
my_other_file.write(b"Timestamp,Signal,Value\n")?;
4444
my_other_file.write(b"2025-01-01T00:00:00Z,TEMP,25.0\n")?;
4545
my_other_file.write(b"2025-01-01T00:00:01Z,TEMP,25.1\n")?;

0 commit comments

Comments
 (0)