ethan
2023-04-08 f5e277c240b9211a1f047b88788f34f3dd5a97c2
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
/**
 * @file Ems_config.h
 * @author your name (you@domain.com)
 * @brief 
 * @version 0.1
 * @date 2023-04-05
 * 
 * @copyright Copyright (c) 2023
 * 
 */
 
#ifndef EMS_CONFIG_H
#define EMS_CONFIG_H
 
/* public config ------------------------------------------------------------ */
/* CMSIS OS related -------------------------------------- */
#define EMS_RTOS_CMSIS_OS_EN                   (0)
#define EMS_RTOS_TICK_MS                       (1)
 
/* QPC related ------------------------------------------- */
#define EMS_QPC_EN                             (0)
#define EMS_EVENT_DATA_SIZE                    (128)
#define EMS_EVENT_POOL_SIZE                    (64)
 
#endif /* EMS_CONFIG_H */
 
/* ----------------------------- end of file -------------------------------- */