forked from flipperdevices/flipperzero-firmware
-
-
Notifications
You must be signed in to change notification settings - Fork 545
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
146 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#include "idle_timeout.h" | ||
#include <stdlib.h> | ||
#include <furi/core/timer.h> | ||
|
||
#define IDLE_TIMER_CHECK_PERIODICITY_SEC (1) | ||
#define SEC_TO_TICKS(sec) ((sec) * 1000) | ||
|
||
struct IdleTimeoutContext { | ||
FuriTimer* timer; | ||
bool activity_reported; | ||
void* on_idle_callback_context; | ||
IDLE_TIMEOUT_CALLBACK on_idle_callback; | ||
uint16_t timeout_sec; | ||
uint16_t idle_period_sec; | ||
bool idle_handled; | ||
}; | ||
|
||
static void idle_timer_callback(void* context) { | ||
IdleTimeoutContext* instance = context; | ||
if (instance->activity_reported) { | ||
instance->idle_period_sec = 0; | ||
instance->idle_handled = false; | ||
instance->activity_reported = false; | ||
} else if (!instance->idle_handled) { | ||
if (instance->idle_period_sec >= instance->timeout_sec) { | ||
instance->idle_handled = instance->on_idle_callback(instance->on_idle_callback_context); | ||
} else { | ||
instance->idle_period_sec += IDLE_TIMER_CHECK_PERIODICITY_SEC; | ||
} | ||
} | ||
} | ||
|
||
IdleTimeoutContext* idle_timeout_alloc(uint16_t timeout_sec, IDLE_TIMEOUT_CALLBACK on_idle_callback, void* on_idle_callback_context) { | ||
IdleTimeoutContext* instance = malloc(sizeof(IdleTimeoutContext)); | ||
if (instance == NULL) return NULL; | ||
|
||
instance->timer = furi_timer_alloc(&idle_timer_callback, FuriTimerTypePeriodic, instance); | ||
if (instance->timer == NULL) return NULL; | ||
|
||
instance->timeout_sec = timeout_sec; | ||
instance->on_idle_callback = on_idle_callback; | ||
instance->on_idle_callback_context = on_idle_callback_context; | ||
return instance; | ||
} | ||
|
||
void idle_timeout_start(IdleTimeoutContext* context) { | ||
furi_timer_start(context->timer, SEC_TO_TICKS(IDLE_TIMER_CHECK_PERIODICITY_SEC)); | ||
} | ||
|
||
void idle_timeout_stop(IdleTimeoutContext* context) { | ||
furi_timer_stop(context->timer); | ||
} | ||
|
||
void idle_timeout_report_activity(IdleTimeoutContext* context) { | ||
context->activity_reported = true; | ||
} | ||
|
||
void idle_timeout_free(IdleTimeoutContext* context) { | ||
furi_timer_stop(context->timer); | ||
furi_timer_free(context->timer); | ||
free(context); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#pragma once | ||
|
||
#include <inttypes.h> | ||
#include <stdbool.h> | ||
|
||
typedef struct IdleTimeoutContext IdleTimeoutContext; | ||
|
||
typedef bool (*IDLE_TIMEOUT_CALLBACK)(void* context); | ||
|
||
/** | ||
* @brief Initializes a new instance of IDLE timeout | ||
* @param timeout_sec IDLE timeout in seconds | ||
* @param on_idle_callback callback function to trigger when IDLE timeout happened | ||
* @param on_idle_callback_context callback function context | ||
* @return IDLE timeout context | ||
*/ | ||
IdleTimeoutContext* idle_timeout_alloc(uint16_t timeout_sec, IDLE_TIMEOUT_CALLBACK on_idle_callback, void* on_idle_callback_context); | ||
|
||
/** | ||
* @brief Starts IDLE timeout | ||
* @param context IDLE timeout context | ||
*/ | ||
void idle_timeout_start(IdleTimeoutContext* context); | ||
|
||
/** | ||
* @brief Stops IDLE timeout | ||
* @param context IDLE timeout context | ||
*/ | ||
void idle_timeout_stop(IdleTimeoutContext* context); | ||
|
||
/** | ||
* @brief Reports activity to IDLE timeout | ||
* @param context IDLE timeout context | ||
*/ | ||
void idle_timeout_report_activity(IdleTimeoutContext* context); | ||
|
||
/** | ||
* @brief Disposes IDLE timeout and releases all the resources | ||
* @param context IDLE timeout context | ||
*/ | ||
void idle_timeout_free(IdleTimeoutContext* context); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters