-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrono_private.h
48 lines (41 loc) · 1.25 KB
/
chrono_private.h
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
/**
******************************************************************************
* @file : chrono_private.h
* @brief :
******************************************************************************
* @attention
*
* Copyright (c) 2024 FaraabinCo.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component
*
* https://faraabinco.ir/
* https://github.com/FaraabinCo
*
******************************************************************************
* @verbatim
* @endverbatim
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef CHRONO_PRIVATE_H
#define CHRONO_PRIVATE_H
#ifdef __cplusplus
extern "C" {
#endif
/* Private defines -----------------------------------------------------------*/
/** @defgroup PRIVATE_DEFINES
* @note These defines are used internally.
* @{
*/
#define TICK_TYPE_VARIABLE (1U)
#define TICK_TYPE_FUNCTION (2U)
#define TICK_COUNTERMODE_UP (0U)
#define TICK_COUNTERMODE_DOWN (1U)
/** @} */ //End of PRIVATE_DEFINES
#ifdef __cplusplus
}
#endif
#endif /* CHRONO_PRIVATE_H */
/************************ © COPYRIGHT FaraabinCo *****END OF FILE****/