Remove OnTouchEvent

This commit is contained in:
mark9064 2024-10-18 00:05:30 +01:00
parent df63e5ceb2
commit 5b925375e7
3 changed files with 1 additions and 7 deletions

View file

@ -168,7 +168,7 @@ std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds> NoI
void nrfx_gpiote_evt_handler(nrfx_gpiote_pin_t pin, nrf_gpiote_polarity_t action) { void nrfx_gpiote_evt_handler(nrfx_gpiote_pin_t pin, nrf_gpiote_polarity_t action) {
if (pin == Pinetime::PinMap::Cst816sIrq) { if (pin == Pinetime::PinMap::Cst816sIrq) {
systemTask.OnTouchEvent(); systemTask.PushMessage(Pinetime::System::Messages::OnTouchEvent);
return; return;
} }

View file

@ -480,10 +480,6 @@ void SystemTask::HandleButtonAction(Controllers::ButtonActions action) {
fastWakeUpDone = false; fastWakeUpDone = false;
} }
void SystemTask::OnTouchEvent() {
PushMessage(Messages::OnTouchEvent);
}
void SystemTask::PushMessage(System::Messages msg) { void SystemTask::PushMessage(System::Messages msg) {
if (in_isr()) { if (in_isr()) {
BaseType_t xHigherPriorityTaskWoken = pdFALSE; BaseType_t xHigherPriorityTaskWoken = pdFALSE;

View file

@ -77,8 +77,6 @@ namespace Pinetime {
void Start(); void Start();
void PushMessage(Messages msg); void PushMessage(Messages msg);
void OnTouchEvent();
bool IsSleepDisabled() { bool IsSleepDisabled() {
return wakeLocksHeld > 0; return wakeLocksHeld > 0;
} }