|
| 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