Skip to content

Commit 6d5bc25

Browse files
authored
Merge pull request #20 from tobozo/1.0.6
1.0.6
2 parents 4439159 + e5e984e commit 6d5bc25

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32-PSRamFS
2-
version=1.0.5
2+
version=1.0.6
33
author=tobozo <[email protected]>
44
maintainer=tobozo <[email protected]>
55
sentence="ESP32 RamDisk for PSRAM and fs::FS"

src/pfs.c

+15-17
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,19 @@
3838
#warning "No SPIRAM detected, will use heap"
3939
#endif
4040

41-
// for PSRAM/SPIRAM detection support
41+
// for SPIRAM detection support
4242
#ifdef CONFIG_IDF_CMAKE // IDF 4+
43-
#if __has_include("esp_psram.h") // IDF 5+, all devices
44-
#include "esp_psram.h"
45-
static int esp_spiram_init(void) { esp_psram_init(); return esp_psram_is_initialized()?ESP_OK:-1; }
46-
#else
47-
#if CONFIG_IDF_TARGET_ESP32 // ESP32/PICO-D4
48-
#include "esp32/spiram.h"
49-
#elif CONFIG_IDF_TARGET_ESP32S2
50-
#include "esp32s2/spiram.h"
51-
#include "esp32s2/rom/cache.h"
52-
#elif CONFIG_IDF_TARGET_ESP32S3
53-
#include "esp32s3/spiram.h"
54-
#include "esp32s3/rom/cache.h"
55-
#else
56-
#error Target CONFIG_IDF_TARGET is not supported
57-
#endif
58-
43+
#if CONFIG_IDF_TARGET_ESP32 // ESP32/PICO-D4
44+
#include "esp32/spiram.h"
45+
#elif CONFIG_IDF_TARGET_ESP32S2
46+
#include "esp32s2/spiram.h"
47+
#include "esp32s2/rom/cache.h"
48+
#elif CONFIG_IDF_TARGET_ESP32S3
49+
#include "esp32s3/spiram.h"
50+
#include "esp32s3/rom/cache.h"
51+
#else // CONFIG_IDF_TARGET_ESP32P4
52+
// psram mapping is seamless on P4, no need to load external spiram component
53+
#undef BOARD_HAS_PSRAM
5954
#endif
6055
#else // ESP32 Before IDF 4.0
6156
#include "esp_spiram.h"
@@ -74,6 +69,8 @@
7469
#include "pfs.h"
7570
#include "esp_vfs.h"
7671

72+
// ESP_LOG* functions always whining about signedness :(
73+
#pragma GCC diagnostic ignored "-Wformat"
7774

7875
// for debug
7976
static const char TAG[] = "esp_psramfs";
@@ -658,6 +655,7 @@ pfs_file_t* pfs_fopen( const char * path, int flags, int fmode )
658655
}
659656
pfs_files[file_id]->index = 0;
660657
pfs_files[file_id]->size = 0;
658+
pfs_files[file_id]->memsize = 0;
661659
break;
662660
case 'r':
663661
ESP_LOGV(TAG, "Read (mode=%s)", mode);

0 commit comments

Comments
 (0)