Skip to content

Commit 204f537

Browse files
authored
Merge pull request #8 from tobozo/1.0.3-beta
1.0.3 beta
2 parents 5047967 + 3aa8404 commit 204f537

13 files changed

+1572
-31
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
idf_component_register(SRCS "src/pfs.c" INCLUDE_DIRS "src")
2+
#target_compile_definitions(${COMPONENT_LIB} PUBLIC "-DLOG_LOCAL_LEVEL=ESP_LOG_VERBOSE")

component.mk

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Main Makefile. This is basically the same as a component makefile.
3+
#
4+
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
5+
6+
COMPONENT_SRCDIRS := src
7+
COMPONENT_ADD_INCLUDEDIRS := src
8+
#COMPONENT_DEPENDS = log

examples/esp-idf-psramvfs/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
components
2+
build
3+
sdkconfig.old
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# The following lines of boilerplate have to be in your project's
2+
# CMakeLists in this exact order for cmake to work correctly
3+
cmake_minimum_required(VERSION 3.5)
4+
5+
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6+
project(psramvfs)

examples/esp-idf-psramvfs/Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
3+
# project subdirectory.
4+
#
5+
6+
PROJECT_NAME := psramvfs
7+
8+
include $(IDF_PATH)/make/project.mk

examples/esp-idf-psramvfs/ReadMe.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## ESP-IDF PSRamFS vfs example
2+
3+
4+
1) cd to the example folder
5+
6+
```console
7+
foo@bar:$ cd examples/esp-idf-psramvfs
8+
```
9+
10+
11+
2) create the components folder
12+
13+
```console
14+
foo@bar:$ mkdir components
15+
```
16+
17+
3) pull the library
18+
19+
```console
20+
foo@bar:$ git clone https://github.com/tobozo/ESP32-PsRamFS --branch=1.0.3-beta components/ESP32-PsRamFS
21+
```
22+
23+
4) setup the project
24+
25+
```console
26+
foo@bar:$ idf.py set-target esp32
27+
```
28+
29+
5) make sure psram is enabled
30+
31+
```console
32+
foo@bar:$ idf.py menuconfig
33+
```
34+
Component config -> ESP32-specific -> Support for external, SPI-connected RAM = yes
35+
36+
6) build and flash
37+
38+
```console
39+
foo@bar:$ idf.py build flash monitor
40+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
idf_component_register(SRCS "psramvfs.c" INCLUDE_DIRS "")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#
2+
# "main" pseudo-component makefile.
3+
#
4+
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
/*\
2+
3+
* PSRAMFS Example
4+
5+
\*/
6+
#include <stdio.h>
7+
#include <string.h>
8+
#include "sdkconfig.h"
9+
#include "esp_log.h"
10+
#include "pfs.h"
11+
12+
13+
static const char TAG[] = "psramvfs_main";
14+
15+
16+
void register_psramvfs(void)
17+
{
18+
pfs_set_partition_size( 0.5 * heap_caps_get_free_size(MALLOC_CAP_SPIRAM) );
19+
20+
esp_vfs_pfs_conf_t conf = {
21+
.base_path = "/psram",
22+
.partition_label = "psram", // ignored ?
23+
.format_if_mount_failed = false
24+
};
25+
26+
esp_err_t err = esp_vfs_pfs_register(&conf);
27+
28+
if(err != ESP_OK){
29+
printf( "Mounting PSRAMFS failed! Error: %d\n", err);
30+
return;
31+
} else {
32+
printf( "PSRAMFS mount successful\n" );
33+
}
34+
35+
}
36+
37+
38+
39+
40+
void test_psramvfs()
41+
{
42+
const char* file_path = "/psram/blah.txt";
43+
const char* data = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
44+
size_t f_size = strlen(data);
45+
char * buffer;
46+
47+
FILE *f = fopen(file_path, "w");
48+
49+
if (f == NULL) {
50+
ESP_LOGE( TAG, "Failed to open file %s for writing", file_path);
51+
return;
52+
} else {
53+
printf( "File %s opened for writing\n", file_path );
54+
}
55+
56+
fwrite(data, sizeof(char), f_size, f);
57+
fclose(f);
58+
59+
printf( "Successfully wrote %d bytes:\n%s\n", f_size, data );
60+
61+
62+
f = fopen(file_path, "r");
63+
64+
if (f == NULL) {
65+
ESP_LOGE( TAG, "Failed to open file %s for reading", file_path );
66+
return;
67+
} else {
68+
printf( "File %s opened for reading\n", file_path );
69+
}
70+
71+
// ftell is still broken with psramfs
72+
//fseek (f , 0 , SEEK_END);
73+
//f_size = ftell (f);
74+
//printf( "File size: %d bytes\n", f_size );
75+
//rewind (f);
76+
77+
// allocate memory to contain the whole file:
78+
buffer = (char*) calloc (f_size+1, sizeof(char));
79+
if (buffer == NULL) {
80+
ESP_LOGE( TAG, "Unable to alloc %d bytes", (int)f_size+1);
81+
return;
82+
}
83+
84+
size_t result = fread ( buffer, 1, f_size, f );
85+
if (result != f_size) {
86+
ESP_LOGE( TAG, "Sizes mismatch (expected %d bytes, got %d bytes)", (int)f_size, result );
87+
return;
88+
} else {
89+
printf( "Successfully read %d bytes: \n%s\n", (int)f_size, (const char*)buffer );
90+
}
91+
92+
fclose(f);
93+
free( buffer );
94+
}
95+
96+
97+
98+
99+
void app_main(void)
100+
{
101+
//esp_log_level_set("psramvfs_main", ESP_LOG_VERBOSE);
102+
//esp_log_level_set("esp_psramfs", ESP_LOG_VERBOSE);
103+
register_psramvfs();
104+
test_psramvfs();
105+
}

0 commit comments

Comments
 (0)