Skip to content

Commit 0d2030d

Browse files
committed
doc update and formatting
1 parent 28840fb commit 0d2030d

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

ReadMe.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,22 @@
77
Coding Horror
88
-------------
99

10-
This is a very early version of ESP32-PsRamFS: a wannabee RamDisk library for Arduino-ESP32
11-
with vfs compliance.
10+
ESP32-PsRamFS id a pseudo RamDisk library for Arduino-ESP32, with vfs compliance.
1211

13-
It provides a `fs::FS` style filesystem using the psram of a ESP32-Wrover or any ESP32
14-
equipped with PSRam.
12+
It provides a `fs::FS` style filesystem using the psram of an ESP32-Wrover or any ESP32 equipped with PSRam.
1513

16-
Some unit tests are available in the example folder, consider setting the debug output level to DEBUG to see what's happening.
14+
Some unit tests are available in the example folder, consider setting the debug output level
15+
to DEBUG to see what's happening.
1716

1817
Directory support is still partial but the API is now vfs compliant.
1918

2019
Usage
2120
-----
2221

22+
Only use this if your situation *requires* a filesystem, otherwise consider dropping the
23+
filesystem and use Streams instead with the excellent [arduino-BufferStream](https://github.com/IndustrialShields/arduino-BufferStream) library.
24+
25+
2326
```C
2427

2528
#include <PSRamFS.h>
@@ -49,7 +52,7 @@ Hardware Requirements:
4952
Actually PSRam is optional, but strongly recommended.
5053

5154
For very low memory situations that still require some abstraction to access file data,
52-
consider dropping the filesystem and use Streams instead with the excellent [arduino-BufferStream](https://github.com/IndustrialShields/arduino-BufferStream) library.
55+
5356

5457

5558
Tested on:

examples/PSRamFS_Test/PSRamFS_Test.ino

+5-5
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ void seekLog( fs::File &file, const char* strref, size_t offset, int mode = 0 )
267267
size_t index = offset;
268268
size_t len = strlen(strref);
269269
if( ! file.seek( index, (fs::SeekMode)mode ) ) {
270-
ESP_LOGD(TAG, "Seek call failed at offset %d using mode %d", index, mode );
270+
ESP_LOGD(TAG, "Seek call failed at (maybe unrealistic) offset %d using mode %d", index, mode );
271271
//return;
272272
}
273273
char a = file.read();
@@ -331,7 +331,7 @@ void testSeek(fs::FS &fs)
331331
seekLog( file, message, 0, 2 ); // seek end
332332
seekLog( file, message, 12, 2 ); // seek end with -12 offset
333333
// this test is expected to fail, but still set the cursor
334-
seekLog( file, message, 12345678, 2 ); // seek end (actually seek start with enormous offset)
334+
seekLog( file, message, len*1024, 2 ); // seek end (actually seek start with enormous offset)
335335

336336
int pos = 0;
337337
file.seek(0);
@@ -356,13 +356,13 @@ void testSeek(fs::FS &fs)
356356
}
357357

358358

359-
for(int i=0;i<30;i++) {
359+
for(int i=0;i<len;i++) {
360360
size_t random_index = rand()%len;
361361
char random_char = (rand()%(128-32))+31;
362362
//ESP_LOGE(TAG, "random char : %s", String(random_char).c_str() );
363363
file.seek( random_index );
364-
file.write( message[random_index] );
365-
//message[random_index] = random_char;
364+
file.write( random_char/*message[random_index]*/ );
365+
message[random_index] = random_char;
366366
seekLog( file, message, random_index, 2 );
367367
}
368368

src/pfs.c

+3-8
Original file line numberDiff line numberDiff line change
@@ -548,11 +548,11 @@ size_t pfs_fread( uint8_t *buf, size_t size, size_t count, pfs_file_t * stream )
548548
}
549549
memcpy( buf, &stream->bytes[stream->index], to_read );
550550
if( to_read > 1 ) {
551-
ESP_LOGV(TAG, "Reading %d byte(s) at index %d of %d", to_read, stream->index, stream->size );
551+
ESP_LOGV(TAG, "(%d, %d) Reading %d byte(s) at index %d of %d", size, count, to_read, stream->index, stream->size );
552552
} else {
553553
char out[2] = {0,0};
554554
out[0] = buf[0];
555-
ESP_LOGV(TAG, "Reading %d byte(s) at index %d of %d (%s)", to_read, stream->index, stream->size, out );
555+
ESP_LOGV(TAG, "(%d, %d) Reading %d byte(s) at index %d of %d (%s)", size, count, to_read, stream->index, stream->size, out );
556556
}
557557
stream->index += to_read;
558558
return to_read;
@@ -563,11 +563,7 @@ size_t pfs_fread( uint8_t *buf, size_t size, size_t count, pfs_file_t * stream )
563563
size_t pfs_fwrite( const uint8_t *buf, size_t size, size_t count, pfs_file_t * stream)
564564
{
565565
size_t to_write = size*count;
566-
/*
567-
if( stream->size > 0 ) {
568-
stream->index = ftell( (FILE*)stream );
569-
}
570-
*/
566+
571567
if( stream->index + to_write >= stream->memsize ) {
572568

573569
size_t used_bytes = pfs_used_bytes();
@@ -602,7 +598,6 @@ size_t pfs_fwrite( const uint8_t *buf, size_t size, size_t count, pfs_file_t * s
602598
stream->index += to_write;
603599

604600
if (stream->index > stream->size) {
605-
ESP_LOGW(TAG, "Flattening stream->size to %d (memsize=%d, should realloc?)", stream->index, stream->memsize );
606601
stream->size = stream->index;
607602
}
608603

0 commit comments

Comments
 (0)