aboutsummaryrefslogtreecommitdiff
path: root/platform/atm2/ATM22xx-x1x/driver/sw_timer/sw_timer.h
blob: 1f249e5af09f9192ed382ffb4b0878cc60179192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
 ******************************************************************************
 *
 * @file sw_timer.h
 *
 * @brief Atmosic Software Timer Driver
 *
 * Copyright (C) Atmosic 2020-2021
 *
 ******************************************************************************
 */

#ifndef __SW_TIMER_H__
#define __SW_TIMER_H__

/**
 * @defgroup SW_TIMER Software Timer APIs
 * @ingroup DRIVERS
 * @brief User driver for application to use software timers
 * @{
 */

#include <stdbool.h>
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

/// Maximum number of concurrent timers - adjust as needed
#ifndef SW_TIMER_ID_MAX
#define SW_TIMER_ID_MAX 8
#endif // SW_TIMER_ID_MAX

/// Smallest granularity for sw_timer_set()
#define SW_TIMER_10_MS 1
/// Commonly used quantity for sw_timer_set()
#define SW_TIMER_1_SEC 100

/// Timer ID type
typedef uint8_t sw_timer_id_t;

/// Timer expired callback function type
typedef void (*sw_timer_func_t)(sw_timer_id_t timer_id, const void *ctx);

/**
 * @brief Allocate and configure timer
 * @param[in] handler  Timer expired callback (called from main event loop)
 * @param[in] ctx      Context to pass to handler
 * @return             Timer ID
 */
sw_timer_id_t sw_timer_alloc(sw_timer_func_t handler, const void *ctx);

/**
 * @brief Deallocate timer
 * @param[in] timer_id  Timer ID from sw_timer_alloc()
 */
void sw_timer_free(sw_timer_id_t timer_id);

/**
 * @brief Reconfigure timer handler and context
 * @param[in] timer_id  Timer ID from sw_timer_alloc()
 * @param[in] handler   Timer expired callback (called from main event loop)
 * @param[in] ctx       Context to pass to handler
 */
void sw_timer_reconfig(sw_timer_id_t timer_id, sw_timer_func_t handler,
    const void *ctx);

/**
 * @brief Start one-shot timer running
 * @param[in] timer_id  Timer ID from sw_timer_alloc()
 * @param[in] centisec  Duration in hundredths of seconds
 */
void sw_timer_set(sw_timer_id_t timer_id, uint32_t centisec);

/**
 * @brief Stop/abort running timer
 * @param[in] timer_id  Timer ID from sw_timer_alloc()
 */
void sw_timer_clear(sw_timer_id_t timer_id);

/**
 * @brief Get timer status
 * @param[in] timer_id  Timer ID from sw_timer_alloc()
 * @return              True when timer is valid and running
 */
bool sw_timer_active(sw_timer_id_t timer_id);

#ifdef __cplusplus
}
#endif

/// @} SW_TIMER

#endif // __SW_TIMER_H__