-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogic_out_example.h.txt
More file actions
36 lines (29 loc) · 959 Bytes
/
Logic_out_example.h.txt
File metadata and controls
36 lines (29 loc) · 959 Bytes
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
/*!\file Logic_out_example.h
** \author SMFSW
** \copyright MIT (c) 2017-2026, SMFSW
** \brief Logic_out example
** \note Simple Logic_out.c / Logic_ex.c example to handle different variable bits as outputs
**/
/****************************************************************/
#ifndef LOGIC_OUT_EXAMPLE_H__
#define LOGIC_OUT_EXAMPLE_H__
#ifdef __cplusplus
extern "C" {
#endif
/****************************************************************/
#ifndef LOGIC_OUT_IT
/*!\brief Logic_out_example handler (handling of variable bits logic outputs)
**/
void Logic_out_example_handler(void);
#else
/*!\brief Logic_out_example init (handling of variable bits logic outputs)
** \note Rest is done in TIM interrupts
**/
void Logic_out_example_init(void);
#endif
/****************************************************************/
#ifdef __cplusplus
}
#endif
#endif /* LOGIC_OUT_EXAMPLE_H__ */
/****************************************************************/