Files starting with underscore in file system are no more hidden

This commit is contained in:
Stephan Hadinger 2021-10-03 16:39:43 +02:00
parent 388b3d5f54
commit 5ae88c4f97
2 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,7 @@ All notable changes to this project will be documented in this file.
### Changed
- Removed command ``EnergyReset`` as it is replaced by new commands
- Files starting with underscore in file system are no more hidden
## [9.5.0.8] 20210927
### Added

View File

@ -259,7 +259,6 @@ uint8_t UfsReject(char *name) {
}
while (*name=='/') { name++; }
if (*name=='_') { return 1; }
if (*name=='.') { return 1; }
if (!strncasecmp(name, "SPOTLI~1", REJCMPL)) { return 1; }