## New
- Read property files with `PropertiesFile`
- Support `boot.properties` so the user can specify the launcher app and an optional app to start after the launcher finishes. (see `BootProperties.cpp`)
- Create registry for CPU affinity and update code to make use of it
- `AppRegistration` and `ServiceRegistration` now also ensure that the `/data` directories always exist for all apps
- `Notes` is now the default app for opening text files. `TextViewer` is removed entirely. Created `tt::app:🎶:start(path)` function.
- WiFi settings moved from NVS to properties file.
- Specify `*.ap.properties` file on the SD card for automatic WiFi settings import on start-up.
- Added `file::getLock(path)` and `file::withLock(path, function)` to do safe file operations on SD cards
## Improvements
- Update TinyUSB to `1.7.6~1`
- Improved `Boot.cpp` code. General code quality fixes and some restructuring to improve readability.
- `tt::string` functionality improvements
- Rename `AppRegistry` to `AppRegistration`
- Rename `ServiceRegistry` to `ServiceRegistration`
- Cleanup in `Notes.cpp`
- `FileTest.cpp` fix for PC
- Created `TestFile` helper class for tests, which automatically deletes files after the test.
- Renamed `Partitions.h` to `MountPoints.h`
- Created `std::string getMountPoints()` function for easy re-use
- Other code quality improvements
- `SdCardDevice`'s `getState()` and `isMounted()` now have a timeout argument
## Fixes
- ELF loading now has a lock so to avoid a bug when 2 ELF apps are loaded in parallel
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
#include "Tactility/MountPoints.h"
|
|
#include "Tactility/hal/Device.h"
|
|
#include "Tactility/hal/sdcard/SdCardDevice.h"
|
|
|
|
#include <Tactility/file/File.h>
|
|
|
|
#include <cstring>
|
|
#include <vector>
|
|
#include <dirent.h>
|
|
|
|
namespace tt::file {
|
|
|
|
std::vector<dirent> getMountPoints() {
|
|
std::vector<dirent> dir_entries;
|
|
dir_entries.clear();
|
|
|
|
// System partition
|
|
auto system_dirent = dirent{
|
|
.d_ino = 0,
|
|
.d_type = TT_DT_DIR,
|
|
.d_name = { 0 }
|
|
};
|
|
strcpy(system_dirent.d_name, SYSTEM_PARTITION_NAME);
|
|
dir_entries.push_back(system_dirent);
|
|
|
|
// Data partition
|
|
auto data_dirent = dirent{
|
|
.d_ino = 1,
|
|
.d_type = TT_DT_DIR,
|
|
.d_name = { 0 }
|
|
};
|
|
strcpy(data_dirent.d_name, DATA_PARTITION_NAME);
|
|
dir_entries.push_back(data_dirent);
|
|
|
|
// SD card partitions
|
|
auto sdcards = tt::hal::findDevices<hal::sdcard::SdCardDevice>(hal::Device::Type::SdCard);
|
|
for (auto& sdcard : sdcards) {
|
|
auto state = sdcard->getState();
|
|
if (state == hal::sdcard::SdCardDevice::State::Mounted) {
|
|
auto mount_name = sdcard->getMountPath().substr(1);
|
|
auto dir_entry = dirent {
|
|
.d_ino = 2,
|
|
.d_type = TT_DT_DIR,
|
|
.d_name = { 0 }
|
|
};
|
|
assert(mount_name.length() < sizeof(dirent::d_name));
|
|
strcpy(dir_entry.d_name, mount_name.c_str());
|
|
dir_entries.push_back(dir_entry);
|
|
}
|
|
}
|
|
|
|
return dir_entries;
|
|
}
|
|
|
|
}
|