-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathfsm_config.h
More file actions
46 lines (35 loc) · 1.54 KB
/
fsm_config.h
File metadata and controls
46 lines (35 loc) · 1.54 KB
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
/*
* @file fsm_config.h
* @brief Finite State Machine + task manager Library
* @author Nima Askari
* @version 1.0.0
* @license See the LICENSE file in the root folder.
*
* @note All my libraries are dual-licensed.
* Please review the licensing terms before using them.
* For any inquiries, feel free to contact me.
*
* @github https://www.github.com/nimaltd
* @linkedin https://www.linkedin.com/in/nimaltd
* @youtube https://www.youtube.com/@nimaltd
* @instagram https://instagram.com/github.nimaltd
*
* Copyright (C) 2025 Nima Askari - NimaLTD. All rights reserved.
*/
#ifndef _FSM_CONFIG_H_
#define _FSM_CONFIG_H_
/*************************************************************************************************/
/** Includes **/
/*************************************************************************************************/
/* USER CODE BEGIN FSM_INCLUDES */
/* USER CODE END FSM_INCLUDES */
/*************************************************************************************************/
/** Configurations **/
/*************************************************************************************************/
/* USER CODE BEGIN FSM_CONFIGURATION */
#define FSM_MAX_TASKS 16
/* USER CODE END FSM_CONFIGURATION */
/*************************************************************************************************/
/** End of File **/
/*************************************************************************************************/
#endif /* _FSM_CONFIG_H_ */