Skip to content

Commit 72fa920

Browse files
committed
Update comment
1 parent c9a1264 commit 72fa920

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

DFR0534.pdf

33 Bytes
Binary file not shown.

examples/playFileByName/playFileByName.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ void setup() {
2525
/* The file name/path for the function playFileByName() is the
2626
* full path of the audio file to be played in format which looks like
2727
* a special unix 8+3 format:
28-
* - Without the dot for the file extension
28+
* - Without a dot between file name and file extension
2929
* - All characters in upper case
30-
* - maximal 8 characters
30+
* - Maximal 8 characters for file name
3131
* - Every file and folder whose name length is shorter then 8 chars
3232
* must be filled up to the 8 chars length by space chars
33-
* - must end with WAV or MP3
33+
* - Must end with WAV or MP3
3434
* - Only WAV and MP3 files are supported
3535
* - Wildcards * (=multiple arbitrary characters) and ? (=one single arbitrary character)
3636
* are allowed and can be used to reduce the filling space chars

src/DFR0534.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,12 @@ void DFR0534::playNext()
227227
*
228228
* The file name/path is the full path of the audio file to be played
229229
* in format which looks like a special unix 8+3 format:
230-
* - Without the dot for the file extension
230+
* - Without a dot between file name and file extension
231231
* - All characters in upper case
232-
* - maximal 8 characters
232+
* - Maximal 8 characters for file name
233233
* - Every file and folder whose name length is shorter then 8 chars
234234
* must be filled up to the 8 chars length by space chars
235-
* - must end with WAV or MP3
235+
* - Must end with WAV or MP3
236236
* - Only WAV and MP3 files are supported
237237
* - Wildcards * (=multiple arbitrary characters) and ? (=one single arbitrary character)
238238
* are allowed and can be used to reduce the filling space chars

0 commit comments

Comments
 (0)