Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-pico
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-pico
Commits
ce45c655
Unverified
Commit
ce45c655
authored
Jun 03, 2024
by
Earle F. Philhower, III
Committed by
GitHub
Jun 03, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make LittleFS filenames support full size (#2192)
Support 255 character names, not just 32, in LittleFS filesystems.
parent
6d6433f2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
libraries/LittleFS/src/LittleFS.h
libraries/LittleFS/src/LittleFS.h
+1
-1
libraries/LittleFS/src/lfs.c
libraries/LittleFS/src/lfs.c
+1
-1
libraries/LittleFS/src/lfs_util.c
libraries/LittleFS/src/lfs_util.c
+1
-1
No files found.
libraries/LittleFS/src/LittleFS.h
View file @
ce45c655
...
...
@@ -29,7 +29,7 @@
#include <FS.h>
#include <FSImpl.h>
#define LFS_NAME_MAX
32
#define LFS_NAME_MAX
255
#include "../lib/littlefs/lfs.h"
using
namespace
fs
;
...
...
libraries/LittleFS/src/lfs.c
View file @
ce45c655
...
...
@@ -2,7 +2,7 @@
// Just have a stub here that redirects to the actual source file
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#define LFS_NAME_MAX
32
#define LFS_NAME_MAX
255
#define LFS_NO_DEBUG
#define LFS_NO_WARN
#define LFS_NO_ERROR
...
...
libraries/LittleFS/src/lfs_util.c
View file @
ce45c655
#define LFS_NAME_MAX
32
#define LFS_NAME_MAX
255
#define LFS_NO_DEBUG
#define LFS_NO_WARN
#define LFS_NO_ERROR
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment