- Add app path get() functions to `TactilityC` - Improved `Dispatcher` and `DispatcherThread` - Improved `PubSub` (type safety) - Created test for `DispatcherThread` and `PubSub` - Save properties files on app exit (various apps) by posting it to the main dispatcher (fixes UI hanging briefly on app exit) - Fixed bug with `SystemSettings` being read from the wrong file path. - `loadPropertiesFile()` now uses `file::readLines()` instead of doing that manually - Increased timer task stack size (required due to issues when reading a properties file for the very first time) - General cleanup - Created `EstimatedPower` driver that uses an ADC pin to measure voltage and estimate the battery charge that is left. - Cleanup of T-Deck board (updated to new style)
79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
#include <Tactility/service/ServiceContext.h>
|
|
#include <Tactility/service/ServiceRegistration.h>
|
|
|
|
#include <Tactility/Mutex.h>
|
|
#include <Tactility/Timer.h>
|
|
#include <Tactility/hal/sdcard/SdCardDevice.h>
|
|
|
|
namespace tt::service::sdcard {
|
|
|
|
constexpr auto* TAG = "SdcardService";
|
|
|
|
extern const ServiceManifest manifest;
|
|
|
|
class SdCardService final : public Service {
|
|
|
|
Mutex mutex;
|
|
std::unique_ptr<Timer> updateTimer;
|
|
hal::sdcard::SdCardDevice::State lastState = hal::sdcard::SdCardDevice::State::Unmounted;
|
|
|
|
bool lock(TickType_t timeout) const {
|
|
return mutex.lock(timeout);
|
|
}
|
|
|
|
void unlock() const {
|
|
mutex.unlock();
|
|
}
|
|
|
|
void update() {
|
|
// TODO: Support multiple SD cards
|
|
auto sdcard = hal::findFirstDevice<hal::sdcard::SdCardDevice>(hal::Device::Type::SdCard);
|
|
if (sdcard == nullptr) {
|
|
return;
|
|
}
|
|
|
|
if (lock(50)) {
|
|
auto new_state = sdcard->getState();
|
|
|
|
if (new_state == hal::sdcard::SdCardDevice::State::Error) {
|
|
TT_LOG_E(TAG, "Sdcard error - unmounting. Did you eject the card in an unsafe manner?");
|
|
sdcard->unmount();
|
|
}
|
|
|
|
if (new_state != lastState) {
|
|
lastState = new_state;
|
|
}
|
|
|
|
unlock();
|
|
} else {
|
|
TT_LOG_W(TAG, LOG_MESSAGE_MUTEX_LOCK_FAILED);
|
|
}
|
|
}
|
|
|
|
public:
|
|
|
|
void onStart(ServiceContext& serviceContext) override {
|
|
auto service = findServiceById<SdCardService>(manifest.id);
|
|
updateTimer = std::make_unique<Timer>(Timer::Type::Periodic, [service]() {
|
|
service->update();
|
|
});
|
|
// We want to try and scan more often in case of startup or scan lock failure
|
|
updateTimer->start(1000);
|
|
}
|
|
|
|
void onStop(ServiceContext& serviceContext) override {
|
|
if (updateTimer != nullptr) {
|
|
// Stop thread
|
|
updateTimer->stop();
|
|
updateTimer = nullptr;
|
|
}
|
|
}
|
|
};
|
|
|
|
extern const ServiceManifest manifest = {
|
|
.id = "sdcard",
|
|
.createService = create<SdCardService>
|
|
};
|
|
|
|
} // namespace
|