Remove OnTouchEvent
This commit is contained in:
parent
0076962588
commit
57b6db8b2a
|
@ -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) {
|
||||
if (pin == Pinetime::PinMap::Cst816sIrq) {
|
||||
systemTask.OnTouchEvent();
|
||||
systemTask.PushMessage(Pinetime::System::Messages::OnTouchEvent);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -493,10 +493,6 @@ void SystemTask::HandleButtonAction(Controllers::ButtonActions action) {
|
|||
fastWakeUpDone = false;
|
||||
}
|
||||
|
||||
void SystemTask::OnTouchEvent() {
|
||||
PushMessage(Messages::OnTouchEvent);
|
||||
}
|
||||
|
||||
void SystemTask::PushMessage(System::Messages msg) {
|
||||
if (in_isr()) {
|
||||
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
||||
|
|
|
@ -77,8 +77,6 @@ namespace Pinetime {
|
|||
void Start();
|
||||
void PushMessage(Messages msg);
|
||||
|
||||
void OnTouchEvent();
|
||||
|
||||
bool IsSleepDisabled() {
|
||||
return wakeLocksHeld > 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user