We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc9d7fd commit 9fdc5f6Copy full SHA for 9fdc5f6
README.md
@@ -39,7 +39,7 @@ while !my_file.is_eof() {
39
40
For writing files:
41
```rust
42
-let my_other_file = root_dir.open_file_in_dir("FILE2.CSV", embedded_sdmmc::Mode::ReadWriteCreateOrAppend)?;
+let my_other_file = root_dir.open_file_in_dir("MY_DATA.CSV", embedded_sdmmc::Mode::ReadWriteCreateOrAppend)?;
43
my_other_file.write(b"Timestamp,Signal,Value\n")?;
44
my_other_file.write(b"2025-01-01T00:00:00Z,TEMP,25.0\n")?;
45
my_other_file.write(b"2025-01-01T00:00:01Z,TEMP,25.1\n")?;
0 commit comments